Lesson 38 of 60 beginner

Cloud Fundamentals & Shared Responsibility

What moves to cloud and what still stays on you

Open interactive version (quiz + challenge)

Real-world analogy

Cloud is like renting apartments in different cities instead of owning the whole building. The landlord fixes the roof and plumbing; you still lock your own door, manage your own keys, and decide which guests you let in.

What is it?

Cloud fundamentals is the vocabulary and mental model for modern infrastructure. You don’t need to be a cloud architect. You need to read architecture diagrams, understand responsibility lines, and administer day-to-day services safely.

Real-world relevance

A company lifts an on-prem app to Azure. Ops team assumes ‘Azure handles backups.’ Six months later, someone deletes a storage container. Azure has no recovery because soft-delete wasn’t enabled and no customer-managed backup existed. Shared responsibility doesn’t forgive assumptions.

Key points

Code example

// Shared responsibility — simple matrix

                           IaaS   PaaS   SaaS
----------------------------------------------
Physical datacenter        Cloud  Cloud  Cloud
Network / host hardware    Cloud  Cloud  Cloud
Hypervisor                 Cloud  Cloud  Cloud
OS patching                You    Cloud  Cloud
Runtime / middleware       You    Cloud  Cloud
Application code           You    You    Cloud
Data                       You    You    You
Identity & access          You    You    You
Configuration              You    You    You
Compliance for workload    You    You    You

Line-by-line walkthrough

  1. 1. Shared responsibility matrix
  2. 2. Header columns IaaS/PaaS/SaaS
  3. 3. Divider line
  4. 4. Physical datacenter row
  5. 5. Host hardware row
  6. 6. Hypervisor row
  7. 7. OS patching row
  8. 8. Runtime row
  9. 9. Application code row
  10. 10. Data row
  11. 11. Identity & access row
  12. 12. Configuration row
  13. 13. Compliance row

Spot the bug

Team migrates SharePoint to M365. Plan: 'No more backups, Microsoft handles it.'
Need a hint?
What does M365 handle — and what doesn’t it handle — in practice?
Show answer
M365 handles service availability and short-term data recoverability, but NOT long-term ransomware-resilient backup of your content, customizations, permissions, and policies for your retention needs. Best practice: keep an independent backup (Veeam/Druva/etc.) per organizational retention policy, enable retention policies, audit log export, and DLP. ‘Microsoft handles it all’ is a myth.

Explain like I'm 5

You don’t fix the plumbing in your apartment — the building owner does. But you still lock your front door, know who has the spare key, and don’t leave your valuables on the balcony. That’s the cloud.

Fun fact

‘The cloud’ began as a joke/metaphor in pre-2000s network diagrams — whoever couldn’t be bothered to draw the internet just drew a cloud. The name stuck because it captures something real: someone else’s infrastructure you don’t have to draw.

Hands-on challenge

Sketch a simple enterprise architecture using three cloud building blocks (Compute, Storage, Identity) and label which responsibilities belong to the provider vs the customer for IaaS, PaaS, and SaaS.

More resources

Open interactive version (quiz + challenge) ← Back to course: IT Jobs Bootcamp