1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-15 11:15:48 +02:00

az-storage-account: add page (#8737)

This commit is contained in:
WhileLoop 2022-10-05 11:47:50 -07:00 committed by GitHub
parent 1e6b25cd61
commit fc993a6f2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,21 @@
# az storage account
> Manage storage accounts in Azure.
> Part of `azure-cli`.
> More information: <https://learn.microsoft.com/cli/azure/storage/account>.
- Create an storage account:
`az storage account create --name {{storage_account_name}} --resource-group {{azure_resource_group}} --location {{azure_location}} --sku {{storage_account_sku}}`
- Generate a shared access signature for a specific storage account:
`az storage account generate-sas --account-name {{storage_account_name}} --name {{account_name}} --permissions {{sas_permissions}} --expiry {{expiry_date}} --services {{storage_services}} --resource-types {{resource_types}}`
- List storage accounts:
`az storage account list --resource-group {{azure_resource_group}}`
- Delete a specific storage account:
`az storage account delete --name {{storage_account_name}} --resource-group {{azure_resource_group}}`