Module 6: Security & Cost Management

Overview

Learn security best practices, use Azure Security Center, configure NSGs and firewalls, and monitor costs in Azure.


Lesson 6.1: Security Best Practices Every SRE Must Know


Lesson 6.2: Using Azure Security Center & Defender


Lesson 6.3: Network Security Groups & Firewalls

az network nsg create --resource-group DemoGroup --name DemoNSG
az network nsg rule create --resource-group DemoGroup --nsg-name DemoNSG --name AllowSSH --protocol tcp --direction inbound --priority 1000 --source-address-prefix '*' --source-port-range '*' --destination-address-prefix '*' --destination-port-range 22 --access Allow

Lesson 6.4: Cost Monitoring & Budget Alerts in Azure


Assessment

Troubleshooting Tips & Common Mistakes


Visual Guide

Azure Security Center Dashboard Sample Security Center dashboard.


Quick Quiz

  1. What is the purpose of NSGs in Azure?
  2. How do you set a budget alert for a Resource Group?
  3. Why is Secure Score important?

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


Community & Discussion


Goal: Apply security and cost management best practices.

Tasks:

  1. Create a Resource Group and deploy a VM.
  2. Configure NSG to allow only SSH (port 22).
  3. Enable MFA for your Azure account.
  4. Set up a budget and alert for the Resource Group.
  5. Review Secure Score in Azure Security Center.

Submission:


Hands-On Assignment

Scenario: You are responsible for securing a new Azure environment.

Instructions:

  1. List three security measures you would implement for VMs and networks.
  2. Describe how you would monitor and control costs for the environment.
  3. Share your security and cost plan in the course forum or with your instructor.

Resources

💬
AI Learning Assistant