Cloud Computing Fundamentals

The shared vocabulary behind every AZ-104 topic โ€” service models, regions, and how Azure organizes resources
๐ŸŸข Beginner โฑ 10 Minutes ๐Ÿ“˜ AZ-104 ยท Prerequisites ๐ŸŽง Audio Available
๐ŸŽง Listen to this page
Why This Matters

AZ-104 assumes you understand the basic vocabulary of cloud computing โ€” service models, regions, and who is responsible for what. This shows up throughout the exam, especially in questions about availability, disaster recovery, and choosing between services.

Service Models: IaaS, PaaS, SaaS

ModelWhat the provider managesWhat you manageAzure examples
IaaS (Infrastructure as a Service)Physical hardware, virtualization, networkingOS, runtime, apps, dataVirtual Machines, Virtual Networks
PaaS (Platform as a Service)Infrastructure + OS + runtimeApps and dataApp Service, Azure SQL Database
SaaS (Software as a Service)Everything, including the applicationYour data/config onlyMicrosoft 365, Dynamics 365

Example: Running a web app on a VM you configure yourself (install IIS or nginx, patch the OS) is IaaS. Deploying the same app to App Service โ€” where Azure handles the OS and runtime โ€” is PaaS. AZ-104 covers both (Module 03 โ€“ Compute includes VMs and App Service).

The Shared Responsibility Model

As you move from IaaS โ†’ PaaS โ†’ SaaS, Microsoft takes on more responsibility and you take on less. But security of your data, identities, and access management is always your responsibility, regardless of model. This is why Identity & Governance (Module 01) is weighted so heavily on the exam โ€” it's the part you always own.

Regions, Region Pairs & Availability Zones

  • A region is a set of Microsoft datacenters in a geographic area (e.g., East US). Most resources are deployed to a specific region.
  • An availability zone (AZ) is a physically separate datacenter (with independent power, cooling, networking) within a region. Regions that support AZs typically have 3.
  • A region pair is a pre-defined pairing of two regions in the same geography (e.g., East US โ†” West US) used for disaster recovery โ€” services like geo-redundant storage (GRS) replicate to the paired region.

Example: Deploying VMs across 3 availability zones in East US protects against a datacenter-level failure (power/cooling outage in one building). Enabling GRS on a storage account in East US additionally protects against a regional disaster by replicating data to West US.

You'll see AZs again in Module 03 (VM availability) and region pairs again in Module 02 (storage redundancy) and Module 05 (Azure Site Recovery).

East US (Region) โ”œโ”€โ”€ Availability Zone 1 (Datacenter A) โ”œโ”€โ”€ Availability Zone 2 (Datacenter B) โ””โ”€โ”€ Availability Zone 3 (Datacenter C) Protects against datacenter failure Region Pair East US โ‡„ West US GRS replication target Protects against regional disaster

Resource Hierarchy (Preview)

Azure organizes everything under a hierarchy:

Management Group โ””โ”€โ”€ Subscription โ””โ”€โ”€ Resource Group โ””โ”€โ”€ Resource (VM, storage account, VNet, ...)

Module 01 covers this hierarchy in depth (management groups, subscriptions, resource groups, and how policies/RBAC apply at each level). For now, just know that every resource you create in these labs lives inside a resource group โ€” which is why every lab's cleanup step is "delete the resource group."

How This Connects to Other Topics

Glossary

Unfamiliar term? Check the AZ-104 Glossary for quick definitions of every concept used across these docs.

Module 01 โ€” Identity & Governance

The resource hierarchy above (management groups โ†’ subscriptions โ†’ resource groups) is covered in depth in Management Groups & Azure Policy.

Key Takeaways

๐Ÿ’ก Summary
  • IaaS / PaaS / SaaS = how much Microsoft manages vs. you
  • Shared responsibility = security of data & identity is always yours
  • Region = a geographic area of datacenters
  • Availability Zone = a physically separate datacenter within a region
  • Region pair = two regions used together for disaster recovery (e.g., GRS)
  • Resource hierarchy = Management Group โ†’ Subscription โ†’ Resource Group โ†’ Resource

Next Steps

  1. Learn: Read this doc (you're here)
  2. Continue: Read Networking Basics (IP addressing, subnets, DNS โ€” needed for Module 04)
  3. Continue: Read Identity & Access Fundamentals (AuthN vs. AuthZ โ€” needed for Module 01)
  4. Begin: Module 01: Entra ID Overview โ€” the first hands-on module