Challenge 07: Azure Global Infrastructure
20-30 min | Cost: Free | Domain: Azure Architecture & Services (35-40%)
Exam skills covered
- Describe Azure regions, region pairs, and sovereign regions
- Describe availability zones
- Describe Azure datacenters
Overview
Azure's global infrastructure is the physical foundation of all cloud services. It consists of 60+ regions worldwide, each containing one or more datacenters connected by a dedicated, low-latency network.
Understanding how Azure organizes its infrastructure — from individual datacenters to availability zones to regions — is essential for designing reliable and performant cloud solutions.
Explore
Task 1: Explore Azure regions
- Visit azure.microsoft.com/explore/global-infrastructure/geographies
- Click on different regions to see what services are available
- Notice:
- Regions are organized by geography (Americas, Europe, Asia Pacific, etc.)
- Not all services are available in all regions
- Some regions are paired for disaster recovery
Key facts about regions:
- A region is a set of datacenters deployed within a defined perimeter
- Regions are connected via a dedicated regional low-latency network
- You choose a region when you deploy most Azure resources
- Choose the region closest to your users for best performance
Task 2: Understand region pairs
| Primary Region | Paired Region | Distance |
|---|---|---|
| East US | West US | ~2,500 km |
| North Europe (Ireland) | West Europe (Netherlands) | ~900 km |
| Southeast Asia (Singapore) | East Asia (Hong Kong) | ~2,600 km |
Why region pairs matter:
- Azure updates one region at a time (never both in a pair simultaneously)
- If a major outage affects a region, recovery is prioritized for paired regions
- Data residency is maintained within the same geography
Task 3: Understand availability zones
- In the Azure Portal, search for Virtual Machine and click Create
- In the Availability options dropdown, look for Availability zone
- Notice you can choose Zone 1, 2, or 3
- Cancel — don't create the VM
What are availability zones?
- Physically separate locations within a region
- Each zone has independent power, cooling, and networking
- Minimum of 3 zones in enabled regions
- Designed to survive datacenter failures
Task 4: Understand sovereign regions
Sovereign regions are isolated instances of Azure for specific compliance needs:
| Sovereign Region | Purpose | Who can access |
|---|---|---|
| Azure Government (US) | US government agencies | US gov personnel with clearance |
| Azure China (21Vianet) | China data residency | China-based organizations |
These are physically and logically separate from the public Azure cloud.
# List all Azure regions
az account list-locations --query "[].{Name:name, DisplayName:displayName}" --output table
# List regions with availability zone support
az account list-locations --query "[?availabilityZoneMappings != null].{Name:displayName, Zones:availabilityZoneMappings[*].logicalZone}" --output table
Key Concepts
| Concept | Description |
|---|---|
| Region | Geographic area with one or more datacenters |
| Region pair | Two regions in the same geography linked for disaster recovery |
| Availability zone | Physically separate datacenter within a region |
| Sovereign region | Isolated Azure instance for government/compliance needs |
| Datacenter | Physical facility with servers, networking, and cooling |
| Geography | Market containing one or more regions (preserves data residency) |
Knowledge Check
1. What is an Azure availability zone?
2. Why does Azure use region pairs?
3. A company must ensure their data never leaves Germany due to regulations. Which Azure concept addresses this requirement?
4. How many availability zones are there at minimum in an Azure region that supports them?
5. Which Azure offering is specifically designed for US government agencies and contractors?
Learn More
- 📚 Study Guide AZ-900 — Curated study materials
- Microsoft Learn: Describe core architectural components
- Azure global infrastructure