How can we tell which regions and availability zones an instance type is available in? I am looking for to check for c5.xlarge instance type.
i already have one query but that is not giving me proper output.
aws --profile qa ec2 describe-reserved-instances-offerings --filters Name=scope,Values=availability-zone --no-include-marketplace --instance-type 'c5.xlarge' | jq -r '.ReservedInstancesOfferings[].AvailabilityZone' | sort | uniq
is there also any other way?