1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 13:53:52 +02:00

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 <kbdharunkrishna@gmail.com>

* Update pages/common/az-storage.md

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
This commit is contained in:
Cristian Bastidas 2023-10-14 03:12:19 -05:00 committed by GitHub
parent c595b073fd
commit 08d8cd6a40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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}}`