Skip to content

Instantly share code, notes, and snippets.

@HumbleSpirit
Last active September 27, 2020 09:43
Show Gist options
  • Save HumbleSpirit/ce850f7736fe99a91e7fc89be9d2f945 to your computer and use it in GitHub Desktop.
Save HumbleSpirit/ce850f7736fe99a91e7fc89be9d2f945 to your computer and use it in GitHub Desktop.
List all AWS availability zones in all regions
aws ec2 describe-regions --query "Regions[].[RegionName]" --out text | xargs -I{} aws --region {} ec2 describe-availability-zones --query "AvailabilityZones[].ZoneName" --out text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment