From 9a919ddc8674adadc74a80aa06d91c523fc04d2f Mon Sep 17 00:00:00 2001 From: Ivan Shcheklein Date: Tue, 4 Jul 2023 20:09:03 -0700 Subject: [PATCH] fix(azure): don't use local for storage account name --- .../remote-storage/azure-blob-storage.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/content/docs/user-guide/data-management/remote-storage/azure-blob-storage.md b/content/docs/user-guide/data-management/remote-storage/azure-blob-storage.md index 873b3a2442..ffe1f80f6b 100644 --- a/content/docs/user-guide/data-management/remote-storage/azure-blob-storage.md +++ b/content/docs/user-guide/data-management/remote-storage/azure-blob-storage.md @@ -61,7 +61,7 @@ variables (usually set during [Azure CLI configuration]) or data from certain Microsoft applications. ```cli -$ dvc remote modify myremote --local account_name 'myuser' +$ dvc remote modify myremote account_name 'mystorage' ``` [default credential]: @@ -69,14 +69,6 @@ $ dvc remote modify myremote --local account_name 'myuser' [azure cli configuration]: https://learn.microsoft.com/en-us/cli/azure/azure-cli-configuration - - -The `dvc remote modify --local` flag is needed to write sensitive user info to a -Git-ignored config file (`.dvc/config.local`) so that no secrets are leaked -through Git. See `dvc config`. - - -
### Windows users: click here for more info.