AWS to Azure Region Mapping — Complete Code Reference

Map AWS region codes to their Azure equivalents. Side-by-side reference of us-east-1 to eastus, eu-west-1 to northeurope, and all major region pairs.

Provider Mapping

Detailed Explanation

AWS to Azure Region Code Mapping

When migrating workloads between AWS and Azure, or building a multi-cloud architecture, you need to know the equivalent region codes across providers. This reference maps the most commonly used AWS regions to their closest Azure counterparts.

Complete Mapping Table

Location AWS Code Azure Code
US East (Virginia) us-east-1 eastus
US East (Ohio) us-east-2 eastus2
US West (Oregon) us-west-2 westus2
US West (California) us-west-1 westus
Canada (Montreal) ca-central-1 canadacentral
Ireland eu-west-1 northeurope
Frankfurt eu-central-1 germanywestcentral
London eu-west-2 uksouth
Paris eu-west-3 francecentral
Stockholm eu-north-1 swedencentral
Tokyo ap-northeast-1 japaneast
Seoul ap-northeast-2 koreacentral
Singapore ap-southeast-1 southeastasia
Sydney ap-southeast-2 australiaeast
Mumbai ap-south-1 centralindia
Sao Paulo sa-east-1 brazilsouth

Naming Convention Differences

  • AWS: Uses geographic compass format like us-east-1, eu-west-2, ap-northeast-1
  • Azure: Uses descriptive names like eastus, northeurope, southeastasia

Important Notes

Not every AWS region has a direct Azure equivalent in the same city. In some cases, the closest Azure region may be in a neighboring city or country. The mappings above represent the closest geographic matches.

CLI Usage Examples

# AWS CLI
aws s3 ls --region us-east-1

# Azure CLI (equivalent)
az storage account list --query "[?location=='eastus']"

Use Case

Migrating a workload from AWS to Azure or building a multi-cloud deployment that uses AWS as primary and Azure as a failover provider, requiring region code translation for infrastructure-as-code templates.

Try It — Cloud Region Comparison

Open full tool