← Back to Home
πŸ”·

Introduction to Azure

Microsoft's cloud platform β€” dominant in the enterprise, and a valuable second cloud to know.

⏱10 min readπŸ“šDevOps Fundamentals

Microsoft Azure is the second-largest cloud platform and the dominant choice in large enterprises β€” especially those already using Microsoft products like Windows Server, Active Directory, and Office 365. Knowing both AWS and Azure makes you far more employable as a DevOps engineer.


🎯 Learning Objectives

By the end of this lesson you will:


Azure vs AWS β€” Same Ideas, Different Names

The cloud concepts you learned for AWS transfer directly. Only the names change:

Concept AWS Azure
Virtual server EC2 Virtual Machine (VM)
Object storage S3 Blob Storage
Identity & access IAM Microsoft Entra ID + RBAC
Networking VPC Virtual Network (VNet)
Managed database RDS Azure SQL Database
Serverless functions Lambda Azure Functions

πŸ’‘ You already know the concepts

If you understood the AWS section, you already understand 80% of Azure. Focus on learning the naming and the console β€” the underlying ideas (compute, storage, identity, networking) are the same.


The Azure Hierarchy

Azure organises everything in a clear hierarchy:

text
Management Group        (optional, groups subscriptions)
└── Subscription        (billing + access boundary)
  └── Resource Group  (a folder for related resources)
      β”œβ”€β”€ Virtual Machine
      β”œβ”€β”€ Storage Account
      └── Virtual Network

This structure β€” especially the Resource Group β€” is one of Azure’s nicest features, and it’s the focus of the next lesson.


Install & Log In with the Azure CLI

bash
# Install on Ubuntu / WSL:
curl -sL https://aka.ms/InstallAzureCLIDeb | sudo bash

az login          # opens a browser to authenticate
az account show   # confirm the active subscription
bash β€” 80Γ—24
student@devops:~$az account show --output table

πŸ§ͺ Hands-on

πŸ“

Get Started with Azure

  1. Create a free Azure account (it includes free credits and always-free services).
  2. Explore the Azure Portal β€” find Virtual Machines, Storage accounts, and Resource groups.
  3. Install the Azure CLI and run az login.
  4. Run az account show to confirm your subscription.

🧠 Knowledge Check

Knowledge Check

What is the Azure equivalent of an AWS EC2 instance?

Knowledge Check

Which Azure concept is a billing and access boundary that contains resource groups?


πŸ’Ό Interview Preparation

Interview Q&A

Why might a company choose Azure over AWS?


Summary

You now understand what Azure is, how its concepts map to AWS, the subscription β†’ resource group β†’ resource hierarchy, and how to log in with the CLI. Next, we organise resources with Resource Groups.

Up Next

Azure Resource Groups

You've mastered this lesson. Continue your journey to becoming a DevOps Engineer.

Start Next Lesson→