Azure Fundamentals

Lesson 1 of 6

Introduction to Cloud Computing and Azure

Cloud computing means renting computing power, storage, and services from a provider instead of buying and maintaining your own servers. Microsoft Azure is one of the largest cloud providers, alongside AWS and Google Cloud.

The service models

ModelYou manageProvider managesExample
IaaSOS, runtime, appPhysical hardware, networkingAzure Virtual Machines
PaaSJust your app and dataOS, runtime, scalingAzure App Service
SaaSJust your dataEverything elseMicrosoft 365

Most of this course focuses on PaaS, services like App Service let you deploy code directly without managing servers at all.

Azure's building blocks

  • Regions, physical data center locations around the world (e.g. "West Europe").
  • Resource groups, logical containers that hold related resources (a web app, its database, its storage) so you can manage and delete them together.
  • Azure Portal, the web dashboard for creating and managing everything visually, at portal.azure.com.

NOTE

Every Azure resource you create belongs to exactly one resource group, get comfortable with them early, they're the organizing unit for almost everything else in this course.

📝 Cloud Basics Quiz

Passing score: 70%
  1. 1.In the PaaS model, which of these does the cloud provider manage for you?

  2. 2.A ____ is a logical container that groups related Azure resources together.

  3. 3.Every Azure resource belongs to exactly one resource group.