Cloud Region Naming Conventions — AWS, Azure, and GCP Formats
Understand the naming conventions used by AWS, Azure, and GCP for region codes. Decode region names and learn the patterns for each provider.
Detailed Explanation
Cloud Region Naming Convention Guide
Each cloud provider uses a distinct naming convention for their regions. Understanding these patterns helps you quickly decode unfamiliar region codes and avoid configuration errors.
AWS Naming Convention
Format: {continent}-{direction}-{number}
| Component | Values | Example |
|---|---|---|
| Continent | us, eu, ap, sa, af, me, ca, il |
us |
| Direction | east, west, north, south, central, northeast, southeast |
east |
| Number | Sequential integer | 1 |
| Result | us-east-1 |
AWS uses hyphens between all components, including before the number. This is the most systematic convention.
Azure Naming Convention
Format: {direction}{geography} or {geography}{direction}
Azure's naming is less systematic than AWS:
eastus,westus,centralus— direction first for US regionsnortheurope,westeurope— direction first for Europejapaneast,koreacentral— geography first for Asiacanadacentral,brazilsouth— geography first for Americas- No separators or numbers (except
eastus2,westus2)
GCP Naming Convention
Format: {continent/country}-{direction}{number}
| Component | Values | Example |
|---|---|---|
| Continent | us, europe, asia, australia, northamerica, southamerica, me |
us |
| Direction | east, west, north, south, central, northeast, southeast |
east |
| Number | Sequential integer (no hyphen before number) | 1 |
| Result | us-east1 |
GCP is similar to AWS but uses longer continent names (europe vs eu, northamerica vs ca) and omits the hyphen before the number.
Common Confusion Points
- AWS
us-east-1vs GCPus-east1— the trailing hyphen before the number - Azure
northeuropeis in Ireland, not Scandinavia - Azure
westeuropeis in the Netherlands, not Western Europe broadly - GCP uses
northamerica-northeast1for Canada (notca-) - AWS
ap-southeast-1vs Azuresoutheastasia— same place (Singapore), very different codes
Use Case
Onboarding new team members who need to understand cloud region naming patterns, or debugging configuration errors caused by incorrect region code formats in multi-cloud environments.
Try It — Cloud Region Comparison
Related Topics
AWS to Azure Region Mapping — Complete Code Reference
Provider Mapping
AWS to GCP Region Mapping — Complete Code Reference
Provider Mapping
Azure to GCP Region Mapping — Complete Code Reference
Provider Mapping
US East Cloud Region Comparison — AWS vs Azure vs GCP
Regional Comparison
Availability Zone Counts by Region — AWS vs Azure vs GCP
Technical Reference