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
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:
| Factor | Why It Matters |
|---|---|
| Latency | Deploy close to your users for faster response times |
| Data residency | Some regulations require data to stay in specific countries |
| Service availability | Not all Azure services are available in every region |
| Pricing | Prices 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:
| Region | Paired Region | Geography |
|---|---|---|
| Australia East | Australia Southeast | Australia |
| UK South | UK West | United Kingdom |
| East US | West US | United States |
| North Europe | West Europe | Europe |
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 Region | Who It’s For |
|---|---|
| Azure Government (US) | US government agencies and their partners |
| Azure China | Organisations 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.
| What | Without Zones | With Zones |
|---|---|---|
| A fire in one datacenter | Your app might go down | Your app keeps running in other zones |
| A power outage | Your app might go down | Other zones have separate power |
| Network failure | Your app might go down | Other 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
🎬 Video coming soon
Azure Regions, Zones, and Datacenters — AZ-900
Azure Regions, Zones, and Datacenters — AZ-900
~9 minFlashcards
Knowledge Check
Harbour Health needs to ensure patient data stays within Australia due to data residency regulations. Which Azure concept helps them achieve this?
Summit Construction deploys VMs across three availability zones in a single region. What does this protect against?
What is the PRIMARY purpose of Azure region pairs?
Next up: Azure’s organisational hierarchy — resources, resource groups, subscriptions, and management groups.