1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 16:15:36 +02:00
tldr/pages/common/az-storage-account.md
Sebastiaan Speck 3e53d171bd
az-*: update links and page description (#10963)
* az-*: update links and page description

* az-aks: update link and page description

* az-*: fix typos in Spanish translation

* az-*: update links and description in Spanish translation
2023-10-15 13:12:29 +05:30

904 B

az storage account

Manage storage accounts in Azure. Part of azure-cli (also known as az). 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}}