For system, network and cloud administrators

How to list all Azure storage accounts using Azure CLI

In order to view all Azure storage accounts, type:

az storage account list --output tsv

If you need to view a storage account from a particular resource group, type:

az storage account list --resource-group yourresourcegroup --output tsv

The tsv output parameter can easily be replaced with table.

Leave a Reply

Your email address will not be published. Required fields are marked *