Skip to content

Instantly share code, notes, and snippets.

@rothgar
Created August 14, 2020 16:35
Show Gist options
  • Save rothgar/a6ed5803fa925ed04cd82f25e6b6d59b to your computer and use it in GitHub Desktop.
Save rothgar/a6ed5803fa925ed04cd82f25e6b6d59b to your computer and use it in GitHub Desktop.
AWS REGION
# my profile is configured for us-west-2
export AWS_DEFAULT_REGION=us-west-1
export AWS_REGION=us-east-1
aws ec2 describe-instances --query 'Reservations[].Instances[].Placement.AvailabilityZone' --output text
us-east-1c
unset AWS_REGION
aws ec2 describe-instances --query 'Reservations[].Instances[].Placement.AvailabilityZone' --output text
us-west-1c
unset AWS_DEFAULT_REGION
aws ec2 describe-instances --query 'Reservations[].Instances[].Placement.AvailabilityZone' --output text
us-west-2b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment