
az-storage
List of commands for az-storage:
-
az-storage:tldr:00afe az-storage: Create a storage account.$ az storage account create -g ${group_name} -n ${account_name} -l ${location} --sku ${account_sku}try on your machineexplain this command
-
az-storage:tldr:37add az-storage: List the access keys for a storage account.$ az storage account keys list -g ${group_name} -n ${account_name}try on your machineexplain this command
-
az-storage:tldr:383e3 az-storage: List all storage accounts in a resource group.$ az storage account list -g ${group_name}try on your machineexplain this command
-
az-storage:tldr:55075 az-storage: Delete a storage account.$ az storage account delete -g ${group_name} -n ${account_name}try on your machineexplain this command
-
az-storage:tldr:8aa73 az-storage: 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}try on your machineexplain this command