System Grab Bag

View all TLDR pages from common (or from all pages)

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

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.