From 08d8cd6a40049e1d2f0336df8c7177bcd8eaeb26 Mon Sep 17 00:00:00 2001 From: Cristian Bastidas <6288158+crixodia@users.noreply.github.com> Date: Sat, 14 Oct 2023 03:12:19 -0500 Subject: [PATCH] az-storage: update to long options (#10947) * az-storage: fix spelled-out options * Update pages/common/az-storage.md Co-authored-by: K.B.Dharun Krishna * Update pages/common/az-storage.md Co-authored-by: Juri Dispan --------- Co-authored-by: K.B.Dharun Krishna Co-authored-by: Juri Dispan --- pages/common/az-storage.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/common/az-storage.md b/pages/common/az-storage.md index 3350501c7b..8df3028b93 100644 --- a/pages/common/az-storage.md +++ b/pages/common/az-storage.md @@ -6,20 +6,20 @@ - Create a storage account: -`az storage account create -g {{group_name}} -n {{account_name}} -l {{location}} --sku {{account_sku}}` +`az storage account create --resource-group {{group_name}} --name {{account_name}} -l {{location}} --sku {{account_sku}}` - List all storage accounts in a resource group: -`az storage account list -g {{group_name}}` +`az storage account list --resource-group {{group_name}}` - List the access keys for a storage account: -`az storage account keys list -g {{group_name}} -n {{account_name}}` +`az storage account keys list --resource-group {{group_name}} --name {{account_name}}` - Delete a storage account: -`az storage account delete -g {{group_name}} -n {{account_name}}` +`az storage account delete --resource-group {{group_name}} --name {{account_name}}` - Update the minimum tls version setting for a storage account: -`az storage account update --min-tls-version TLS1_2 -g {{group_name}} -n {{account_name}}` +`az storage account update --min-tls-version {{TLS1_0|TLS1_1|TLS1_2}} --resource-group {{group_name}} --name {{account_name}}`