Skip to content

Instantly share code, notes, and snippets.

@DevoKun
Created April 24, 2019 22:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DevoKun/c4dd57fc268b85b81c60691cc4595de4 to your computer and use it in GitHub Desktop.
Save DevoKun/c4dd57fc268b85b81c60691cc4595de4 to your computer and use it in GitHub Desktop.
Get list of Azure Region Codes and their Friendly Names
#!/bin/bash
# az login
az account list-locations > azure_locations.json
cat azure_locations.json | jq '.[] | "\(.name): \(.displayName)"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment