List of Azure VM Sizes and Skus
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