Global Availability of EC2 Instance Types
Posted on August 13, 2025 • 3 min read • 607 wordsUnderstanding the geographical availability of EC2 instance types is crucial for planning a performant, resilient, and cost-effective cloud architecture.

When designing infrastructure on AWS, one of the first technical decisions involves the EC2 instance types used. However, this decision cannot be made in isolation: the regional availability of instance types varies by geographic location, impacting your architecture’s resilience, scalability, and cost.
This article explains in detail how to understand and anticipate this global availability, with a clear approach directly applicable by developers, DevOps engineers, and data scientists.
AWS divides its global infrastructure into regions (e.g., eu-west-3, us-east-1) and Availability Zones. EC2 instance types are not guaranteed in all regions—they depend on local hardware capacity, demand, and internal AWS policies.
| Instance Type | Available in eu-west-3 (Paris) | Available in us-east-1 (N. Virginia) |
|---|---|---|
t4g.micro (Graviton) | ✅ | ✅ |
p4d.24xlarge (GPU) | ❌ | ✅ |
m7i.large (Intel) | ❌ | ✅ |
This implies that for advanced use cases (machine learning, simulation, high-frequency servers), availability must be checked before deployment.
Instance types like p4, g5, inf2 are sometimes only available in major regions such as us-east-1, us-west-2. For training models, deployment in those regions is often required, even if it means managing inter-region data latency.
For high availability, you may want to replicate infrastructure across multiple regions. But if a type like c7g is only available in one region, it limits portability of your code and AMIs.
Newer types (t4g, m7g, r7g) are often cheaper but based on Graviton (ARM). If they are not locally available, you cannot benefit from AWS’s latest economies of scale.
In EC2 → Launch Instance → Choose type: only available types are displayed.
aws ec2 describe-instance-type-offerings \
--location-type region \
--filters Name=instance-type,Values=c7g.large \
--region us-west-1Use these tools to anticipate quotas or reserve critical resources over a given period.
Official site: https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services/
m6i if m7i is not available).instance requirements instead of a fixed instance type).AWS regularly adds new EC2 instance types to more regions.
m7g, c7g) are prioritized in new regions to reduce cost and carbon footprint.us-east-1, us-west-2, eu-west-1) before broader expansion.The t4g (Graviton2) instance type was initially available in only 4–5 regions. Today, it is available in most global regions, including eu-west-3 (Paris).
The global availability of EC2 instance types is not uniform. This factor can become a bottleneck in your cloud deployments if not anticipated. By understanding the regional constraints and using the tools provided by AWS, you can design a more portable, performant, and optimized architecture.