Skip to main content

Challenge 07: Azure Global Infrastructure

Estimated Time

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

  1. Visit azure.microsoft.com/explore/global-infrastructure/geographies
  2. Click on different regions to see what services are available
  3. 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 RegionPaired RegionDistance
East USWest 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

  1. In the Azure Portal, search for Virtual Machine and click Create
  2. In the Availability options dropdown, look for Availability zone
  3. Notice you can choose Zone 1, 2, or 3
  4. 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

Challenge 07 - Azure Regions and Availability Zones

Task 4: Understand sovereign regions

Sovereign regions are isolated instances of Azure for specific compliance needs:

Sovereign RegionPurposeWho can access
Azure Government (US)US government agenciesUS gov personnel with clearance
Azure China (21Vianet)China data residencyChina-based organizations

These are physically and logically separate from the public Azure cloud.

Azure CLI Alternative
# 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

ConceptDescription
RegionGeographic area with one or more datacenters
Region pairTwo regions in the same geography linked for disaster recovery
Availability zonePhysically separate datacenter within a region
Sovereign regionIsolated Azure instance for government/compliance needs
DatacenterPhysical facility with servers, networking, and cooling
GeographyMarket 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