Skip to content

Instantly share code, notes, and snippets.

@m-gagne
Created November 30, 2017 23:52
Show Gist options
  • Save m-gagne/2067d70d5a1011ec771682173ec52517 to your computer and use it in GitHub Desktop.
Save m-gagne/2067d70d5a1011ec771682173ec52517 to your computer and use it in GitHub Desktop.
Azure CLI to find all VM SKUs in all locations (from your subscription)
az account list-locations --output tsv | awk -F '\t' '{print $1 ; system("az vm list-sizes --output table --location " $5);}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment