Created
January 6, 2017 15:31
-
-
Save joshlove/a81ec88f93b812dda17a959b626abdec to your computer and use it in GitHub Desktop.
lookup all availability zones for all regions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in `aws ec2 describe-regions | jq -r '.Regions[].RegionName'` ; do | |
aws ec2 describe-availability-zones --region $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment