2 Answers
- Newest
- Most votes
- Most comments
1
Its not necessary the instance type would be available in all AZ's. You might run into error like "Your requested instance type is not supported in your requested Availability Zone" in that case
--Syd
answered 3 years ago
1
You can determine which instance types are available in a specific availability zone by doing this:
aws ec2 describe-instance-type-offerings --location-type "availability-zone" --filters Name=location,Values=<AZ name> --region <region name>
For example:
aws ec2 describe-instance-type-offerings --location-type "availability-zone" --filters Name=location,Values=us-east-1b --region us-east-1
Relevant content
- Accepted Answerasked 2 years ago
- asked a year ago
- asked a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated a month ago