Module 1: Introduction to Azure & SRE

Overview

This module introduces cloud computing, Microsoft Azure, and the role of Site Reliability Engineers (SREs). It is designed for beginners and sets the foundation for the rest of the course.

Lesson 1.1: What is Cloud Computing?

Lesson 1.2: Why Choose Azure?

Lesson 1.3: Who is an SRE?

Lesson 1.4: Azure Portal Walkthrough & Free Account

Assessment

Example Script: Create a Resource Group in Azure CLI

az group create --name MyResourceGroup --location eastus

Example Script: Create a Virtual Machine in Azure CLI

az vm create --resource-group MyResourceGroup --name MyVM --image UbuntuLTS --admin-username azureuser --generate-ssh-keys

Troubleshooting Tips & Common Mistakes

Visual Guide

Azure Portal Dashboard Example Sample Azure Portal dashboard for reference.

Quick Quiz

  1. What are the three main cloud service models?
  2. What is the difference between a Resource Group and a Subscription?
  3. Why is reliability important for an SRE?

Discuss your answers in the course forum or with your instructor.

Community & Discussion

Mini Project: Azure Starter Lab

Goal: Get hands-on with Azure basics.

Tasks:

  1. Create a free Azure account and log in to the portal.
  2. Create a Resource Group named StarterRG in your preferred region.
  3. Deploy a Linux Virtual Machine named StarterVM in StarterRG.
  4. Connect to your VM using SSH and run uname -a to verify the OS.
  5. Delete the VM and Resource Group to avoid charges.

Submission:


Hands-On Assignment

Scenario: You are tasked with explaining cloud computing and Azure to a friend who is new to IT.

Instructions:

  1. Write a 1-paragraph analogy comparing cloud computing to something in everyday life (e.g., renting a car vs. owning).
  2. List three benefits of using Azure for a small business.
  3. Share your analogy and list in the course discussion forum or with your instructor.

Resources

💬
AI Learning Assistant