Created
August 14, 2020 16:35
-
-
Save rothgar/a6ed5803fa925ed04cd82f25e6b6d59b to your computer and use it in GitHub Desktop.
AWS REGION
This file contains 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
# 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