πŸ”’ Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AZ-104 Domain 5
Domain 5 β€” Module 3 of 4 75%
26 of 27 overall

AZ-104 Study Guide

Domain 1: Manage Azure Identities and Governance

  • Microsoft Entra ID: Your Identity Foundation Free
  • Users, Groups & Licenses Free
  • RBAC: Who Can Do What in Azure Free
  • Subscriptions, Resource Groups & Management Groups Free
  • Azure Policy & Resource Locks Free
  • Tags, Cost Management & Azure Advisor Free

Domain 2: Implement and Manage Storage

  • Storage Accounts & Redundancy
  • Securing Storage: Keys, SAS & Firewalls
  • Blob Containers & Storage Tiers
  • Blob Lifecycle, Versioning & Soft Delete
  • Azure Files: Shares, Snapshots & Recovery

Domain 3: Deploy and Manage Azure Compute Resources

  • ARM Templates & Bicep: Infrastructure as Code
  • Virtual Machines: Create & Configure Free
  • VM Disks, Encryption & Migration
  • Availability Sets, Zones & Scale Sets
  • Containers: ACR, ACI & Container Apps
  • App Service Plans & Scaling
  • App Service: Slots, Certificates & Networking

Domain 4: Implement and Manage Virtual Networking

  • Virtual Networks & Subnets
  • VNet Peering & User-Defined Routes
  • NSGs & Application Security Groups
  • Azure Bastion, Service & Private Endpoints
  • Azure DNS & Load Balancers

Domain 5: Monitor and Maintain Azure Resources

  • Azure Monitor: Metrics & Logs
  • Alerts, Insights & Network Watcher
  • Azure Backup & Vaults
  • Azure Site Recovery & Disaster Recovery

AZ-104 Study Guide

Domain 1: Manage Azure Identities and Governance

  • Microsoft Entra ID: Your Identity Foundation Free
  • Users, Groups & Licenses Free
  • RBAC: Who Can Do What in Azure Free
  • Subscriptions, Resource Groups & Management Groups Free
  • Azure Policy & Resource Locks Free
  • Tags, Cost Management & Azure Advisor Free

Domain 2: Implement and Manage Storage

  • Storage Accounts & Redundancy
  • Securing Storage: Keys, SAS & Firewalls
  • Blob Containers & Storage Tiers
  • Blob Lifecycle, Versioning & Soft Delete
  • Azure Files: Shares, Snapshots & Recovery

Domain 3: Deploy and Manage Azure Compute Resources

  • ARM Templates & Bicep: Infrastructure as Code
  • Virtual Machines: Create & Configure Free
  • VM Disks, Encryption & Migration
  • Availability Sets, Zones & Scale Sets
  • Containers: ACR, ACI & Container Apps
  • App Service Plans & Scaling
  • App Service: Slots, Certificates & Networking

Domain 4: Implement and Manage Virtual Networking

  • Virtual Networks & Subnets
  • VNet Peering & User-Defined Routes
  • NSGs & Application Security Groups
  • Azure Bastion, Service & Private Endpoints
  • Azure DNS & Load Balancers

Domain 5: Monitor and Maintain Azure Resources

  • Azure Monitor: Metrics & Logs
  • Alerts, Insights & Network Watcher
  • Azure Backup & Vaults
  • Azure Site Recovery & Disaster Recovery
Domain 5: Monitor and Maintain Azure Resources Premium ⏱ ~13 min read

Azure Backup & Vaults

Losing data is every admin's nightmare. Azure Backup protects VMs, databases, and files with automated backup policies, instant restore snapshots, and geo-redundant vaults. Learn the difference between Recovery Services vaults and Backup vaults, and how to configure both.

What is Azure Backup?

β˜• Simple explanation

Azure Backup is like a safety deposit box for your data β€” except the box is in Microsoft’s secure vault, and it takes snapshots automatically on a schedule.

On-prem, you had backup software, tape drives, and offsite storage to worry about. Azure Backup replaces all of that with a cloud-native service. You tell it what to back up, how often, and how long to keep it. Azure handles the rest β€” snapshots, storage, encryption, and retention.

Everything goes into a vault β€” a secure container that stores your backup data, often replicated to another Azure region for disaster protection.

Azure Backup is a fully managed backup-as-a-service solution that replaces on-premises backup infrastructure. It supports multiple workload types including Azure VMs, SQL Server in VMs, Azure Files, SAP HANA, Azure Managed Disks, and Azure Database for PostgreSQL. Data is encrypted at rest (AES-256) and in transit (HTTPS).

Backup data is stored in two types of vaults: Recovery Services vault (traditional, supports VMs, SQL, Files, SAP HANA) and Backup vault (newer, supports Managed Disks, Blobs, PostgreSQL). Both provide storage replication options (LRS, GRS, ZRS) and policy-based management.

Recovery Services Vault vs Backup Vault

Choose the vault type based on what you're backing up
FeatureRecovery Services VaultBackup Vault
Supported workloadsAzure VMs, SQL in VMs, Azure Files, SAP HANA, Azure File ShareAzure Managed Disks, Azure Blobs, Azure Database for PostgreSQL
Site Recovery supportYes (DR replication)No
MaturityOriginal vault type, widely usedNewer vault type for modern workloads
Soft delete14 additional days by default14 additional days by default
Cross-region restoreSupported (GRS vaults)Varies by workload
When to useVM backup, SQL backup, file share backupDisk backup, blob backup, PostgreSQL backup
πŸ’‘ Exam tip: Know which vault for which workload

The exam tests whether you know which vault type supports which workload. Quick rule: if it’s a VM, SQL, or file share β€” use a Recovery Services vault. If it’s a managed disk, blob, or PostgreSQL β€” use a Backup vault. Azure Site Recovery (disaster recovery) only works with Recovery Services vaults.

Storage replication options

When creating a vault, you choose how backup data is replicated:

ReplicationHow It WorksUse Case
LRS (Locally Redundant)3 copies in the same datacentreLowest cost, protects against hardware failure
GRS (Geo-Redundant)LRS + 3 copies in the paired regionProtects against entire region failure
ZRS (Zone-Redundant)3 copies across availability zones in the same regionProtects against zone failure, data stays in region

Important: You must set replication BEFORE configuring any backup items. Changing replication after backups are configured is not supported.

Backup policies

A backup policy defines the schedule, retention, and snapshot behaviour:

Policy components:

  • Schedule: How often to back up (daily, weekly, or hourly for enhanced policies)
  • Instant restore snapshots: VM snapshots retained locally for fast restores (1-5 days)
  • Daily retention: How many daily backups to keep
  • Weekly retention: How many weekly backups to keep
  • Monthly retention: How many monthly backups to keep
  • Yearly retention: How many yearly backups to keep
Real-world: TechCorp's backup strategy

TechCorp Solutions creates two backup policies in their Recovery Services vault:

Production policy:

  • Daily backup at 02:00
  • Instant restore snapshots: 5 days (fast VM restore)
  • Daily retention: 30 days
  • Weekly retention: 12 weeks
  • Monthly retention: 12 months
  • Yearly retention: 3 years
  • Vault replication: GRS (backup data in paired region)

Dev/Test policy:

  • Daily backup at 04:00
  • Instant restore snapshots: 2 days
  • Daily retention: 7 days
  • No weekly/monthly/yearly retention
  • Vault replication: LRS (cheapest option for non-critical data)

Alex saves 60% on backup costs for dev/test while keeping production fully protected.

Backup and restore operations

Backup types

Backup TypeHow It Works
Scheduled backupRuns automatically per policy (most common)
On-demand backupManual backup triggered outside the schedule

Restore options for VMs

Restore OptionWhat It Does
Create new VMRestores backup as a brand-new VM
Replace existingReplaces the existing VM’s disks with the backup
Restore diskRestores only the managed disks (you attach them to a VM manually)
File-level recoveryMount the backup as a drive and recover individual files
Cross-region restoreRestore from GRS-replicated data in the paired region
πŸ’‘ Exam tip: Soft delete protects backup data

Soft delete is enabled by default on Recovery Services vaults and Backup vaults. When you stop backup and delete backup data, the data is retained for an additional 14 days. During this period, it can be recovered at no extra cost. This protects against accidental or malicious deletion of backup data.

The exam may describe a scenario where someone deletes backup data and ask if it can be recovered β€” the answer is yes, within 14 days.

Backup reports and alerts

Backup reports use a Log Analytics workspace to provide cross-vault analytics:

  • Backup jobs status (success, failure, in progress)
  • Backup storage consumption trends
  • Protected items count
  • Policy compliance

Backup alerts:

  • Built-in alerts for job failures (enabled by default)
  • Custom alert rules using Log Analytics data
  • Azure Monitor integration for consistent alerting across all resources
Question

What is the difference between a Recovery Services vault and a Backup vault?

Click or press Enter to reveal answer

Answer

Recovery Services vault supports VMs, SQL in VMs, Azure Files, SAP HANA, and Site Recovery. Backup vault supports newer workloads: Managed Disks, Azure Blobs, and Azure Database for PostgreSQL. Choose based on the workload you're backing up.

Click to flip back

Question

What does soft delete do for Azure Backup?

Click or press Enter to reveal answer

Answer

Soft delete retains deleted backup data for an additional 14 days after deletion. During this period, the data can be recovered at no extra cost. It protects against accidental or malicious deletion and is enabled by default on both vault types.

Click to flip back

Question

What are the four restore options for Azure VM backups?

Click or press Enter to reveal answer

Answer

Create new VM (restore as a new VM), Replace existing (swap the current VM's disks), Restore disk (just restore the managed disks), and File-level recovery (mount the backup to recover individual files). Cross-region restore is also available with GRS vaults.

Click to flip back

Question

What does GRS vault replication provide that LRS does not?

Click or press Enter to reveal answer

Answer

GRS replicates backup data to the Azure paired region, protecting against entire region failures. LRS keeps 3 copies in the same datacentre. With GRS, you can perform cross-region restores from the paired region if the primary region is unavailable.

Click to flip back

Knowledge check

Knowledge Check

CloudFirst Labs needs to back up their Azure Managed Disks. Which vault type should they use?

Knowledge Check

An admin at Meridian Financial accidentally deletes the backup data for a critical production VM. The deletion happened 10 days ago. Can the backup data be recovered?

Knowledge Check

Alex needs to restore a single configuration file from a VM backup without restoring the entire VM. Which restore option should he use?

🎬 Video coming soon

← Previous

Alerts, Insights & Network Watcher

Next β†’

Azure Site Recovery & Disaster Recovery

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.