For system, network and cloud administrators

How to list all Azure managed disks that start with a pattern using Azure CLI

In order to view all managed disks that start with the disk name, type:

az disk list --query "[?starts_with(name,'disk')].name" --output tsv

How to list all Azure resource groups that start with a pattern using Azure CLI

In order to list all resource groups that start with rg, for example, type:

az group list --query "[?starts_with(name,'rg')].name" --output tsv

How to view disk size of an Azure managed disk using Azure CLI

In order to check the size of the managed disk in Azure, type:

az disk show --resource-group yourresourcegroup --name yourdiskname --query diskSizeGb

How to check an Azure disk performance SKU using Azure CLI

In order to view current disk performance SKU in Azure, type:

az disk show --resource-group yourresourcegroup --name yourdiskname --query sku


How to retrieve properties of a newly created Azure managed disk using Azure CLl

In order to view all properties of a managed disk in Azure type:

az disk show --resource-group yourresourcegroup --name yourdiskname