IaaS, PaaS, and SaaS Explained
Break down the three cloud service models with real-world examples, and understand which layer of the stack each model abstracts away from you.
The Cloud Service Model Stack
Cloud services come in three flavours — IaaS, PaaS, and SaaS. They differ in how much of the stack the provider runs for you, from raw hardware up to a finished app.
IaaS: Infrastructure as a Service
IaaS rents you virtual machines, storage, and networking. You manage the OS and everything above; Azure handles the physical hardware. The VM is yours to control.
# IaaS example: create a VM (you manage OS and above)
az vm create \
--resource-group myRG \
--name myIaaSVM \
--image Win2022Datacenter \
--size Standard_B2sAll lessons in this course
- Cloud vs. Traditional On-Premises
- IaaS, PaaS, and SaaS Explained
- Public, Private, and Hybrid Cloud
- Key Cloud Benefits and Economies of Scale