Domain 2 β€” Module 1 of 11 9%
8 of 26 overall
Domain 2: Describe Azure Architecture and Services Free ⏱ ~12 min read

Azure Regions, Zones, and Datacenters

Azure runs in 60+ regions across the globe. Understanding regions, availability zones, and how Azure's physical infrastructure is organised is fundamental to designing resilient cloud solutions.

Azure’s physical infrastructure

Simple explanation

Think of Azure like a global chain of hotels.

Datacenters = individual hotel buildings, full of servers instead of rooms.

Availability zones = separate buildings in the same city, each with its own power and cooling. If one building catches fire, guests move to the other buildings.

Regions = cities where the hotels operate. β€œAustralia East” is Sydney, β€œUK South” is London.

Region pairs = partner cities. If a natural disaster hits Sydney, Melbourne (the paired region) can take over.

Azure has 60+ regions in over 140 countries β€” more global coverage than any other cloud provider.

Azure regions

A region is a geographical area on the planet containing at least one (but often multiple) datacenters that are networked together with a low-latency network.

Why regions matter

When you create an Azure resource (a VM, a database, a storage account), you choose which region to deploy it in. This matters because:

FactorWhy It Matters
LatencyDeploy close to your users for faster response times
Data residencySome regulations require data to stay in specific countries
Service availabilityNot all Azure services are available in every region
PricingPrices vary between regions

Harbour Health’s region choice

Harbour Health needs their patient data to stay within a specific geography for regulatory compliance. They deploy to Australia East (Sydney) β€” the closest Azure region to their Auckland office β€” and configure data residency policies to ensure data stays within Australia.

Region pairs

Azure pairs most regions within the same geography:

RegionPaired RegionGeography
Australia EastAustralia SoutheastAustralia
UK SouthUK WestUnited Kingdom
East USWest USUnited States
North EuropeWest EuropeEurope

Why pairs matter for the exam:

  • Platform updates are rolled out to one region in a pair first, then the other β€” minimising simultaneous downtime
  • If a broad outage occurs, one region from each pair is prioritised for recovery
  • Some services (like geo-redundant storage) replicate data to the paired region automatically

Sovereign regions

Some Azure regions are sovereign β€” isolated from the main Azure cloud for government or regulatory reasons:

Sovereign RegionWho It’s For
Azure Government (US)US government agencies and their partners
Azure ChinaOrganisations operating in China (operated by 21Vianet, not Microsoft)

Exam tip: Sovereign regions are physically and logically separate from the main Azure cloud. Azure Government meets US government security requirements. Azure China is operated by a separate company due to Chinese regulations.

Availability zones

Availability zones are physically separate locations within a single region. Each zone has independent power, cooling, and networking.

Think of it like this: if Region = City, then Availability Zone = different neighbourhoods in that city, each with its own power grid.

WhatWithout ZonesWith Zones
A fire in one datacenterYour app might go downYour app keeps running in other zones
A power outageYour app might go downOther zones have separate power
Network failureYour app might go downOther zones have separate networking

How Summit Construction uses availability zones

Summit deploys their project portal across three availability zones in Australia East:

  • Zone 1: Primary VM
  • Zone 2: Secondary VM
  • Zone 3: Tertiary VM

A load balancer distributes traffic across all three. If Zone 1 goes offline, Zones 2 and 3 handle all traffic automatically. Zero downtime.

Zone-redundant vs zonal services

Azure services support availability zones in two ways:

  • Zonal services: You pin a resource to a specific zone (e.g., a VM in Zone 1)
  • Zone-redundant services: Azure automatically spreads the resource across zones (e.g., zone-redundant storage)

Exam tip: If a question asks β€œhow to achieve the highest availability within a single region,” the answer is usually deploying across multiple availability zones.

Azure datacenters

You never interact with individual datacenters directly β€” you work with regions and zones. But it helps to know what’s inside:

  • Thousands of physical servers in racks
  • Redundant power supplies and generators
  • Advanced cooling systems
  • 24/7 physical security (guards, biometrics, cameras)
  • Network connectivity to other datacenters in the region

Key concept: Datacenters are the physical foundation. Availability zones group datacenters. Regions group zones. You choose regions; Azure manages the rest.

🎬 Video walkthrough

Flashcards

Question

What is an Azure region?

Click or press Enter to reveal answer

Answer

A geographical area containing one or more datacenters networked together with low latency. You choose a region when deploying resources. Examples: Australia East, UK South, East US.

Click to flip back

Question

What are availability zones?

Click or press Enter to reveal answer

Answer

Physically separate locations within a region, each with independent power, cooling, and networking. Typically 3 zones per region. Deploying across zones protects against datacenter-level failures.

Click to flip back

Question

What are region pairs?

Click or press Enter to reveal answer

Answer

Two Azure regions in the same geography linked for disaster recovery. Updates roll out sequentially across pairs. If a wide outage occurs, one region from each pair is prioritised for recovery.

Click to flip back

Question

What are sovereign regions?

Click or press Enter to reveal answer

Answer

Azure regions isolated from the main cloud for government/regulatory compliance. Examples: Azure Government (US agencies) and Azure China (operated by 21Vianet). They are physically and logically separate.

Click to flip back

Knowledge Check

Knowledge Check

Harbour Health needs to ensure patient data stays within Australia due to data residency regulations. Which Azure concept helps them achieve this?

Knowledge Check

Summit Construction deploys VMs across three availability zones in a single region. What does this protect against?

Knowledge Check

What is the PRIMARY purpose of Azure region pairs?


Next up: Azure’s organisational hierarchy β€” resources, resource groups, subscriptions, and management groups.