Life's random bits By b1thunt3r (aka Ishan Jain)…
List of Azure VM Sizes and Skus

List of Azure VM Sizes and Skus

Ishan jain
Quick way to find what sizes are available in your region.

You can get available sizes with:

# Azure CLI
az vm list-sizes --location <azureRegion> --output table
# Azure PowerShell
Get-AzVMSize -Location <azureRegion> | Format-Table 

You can also get all the SKUs with applied restrictions:

# Azure CLI
az vm list-skus --location <azureRegion> --output table
# Azure PowerShell
Get-AzComputeResourceSku -Location <azureRegion> | Format-Table