An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
Hello Souvik, thanks for all the detail. This behavior is actually expected and here’s why:
- Vault replication (LRS vs GRS) applies only to the vault’s underlying storage.
- When you pick GRS on the Recovery Services Vault, Azure Backup replicates your vault data to a secondary region – but it does not change the storage SKU of the VM disks you backed up.
- Restore-point metadata always shows the original disk SKU/redundancy (in your case Premium_LRS) because that’s what will be re-provisioned on restore.
- The restore point record fields (e.g.
storageAccountTypein the recovery-point JSON) reflect the source disk settings, not the vault’s storage replication type.
- The restore point record fields (e.g.
- Snapshot/replication flow:
- Azure Backup takes a snapshot of each managed disk on your VM (preserving its SKU and LRS redundancy), ingests it into the vault, and then the vault service replicates that snapshot image to the paired region if you selected GRS.
- During a restore, Azure Backup reads the snapshot metadata (Premium_LRS) and re-creates the disks using that SKU in your target region/resource group.
- There’s no metadata inconsistency here – you’ll always see Premium_LRS in the restore point, even though the vault itself is geo-replicated.
If you need to inspect the full restore-point JSON, you can use PowerShell or REST:
• PowerShell
# Login-AzAccount
$vault = Get-AzRecoveryServicesVault –Name "<yourVaultName>"
Set-AzRecoveryServicesVaultContext –Vault $vault
$rp = Get-AzRecoveryServicesBackupRecoveryPoint –ItemName "<yourVMName>" –VaultId $vault.ID
$rp.Properties | Format-List *
• REST
GET
https://management.azure.com/Subscriptions/{subId}/resourceGroups/{rg}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupFabrics/Azure/protectionContainers/iaasvmcontainer;iaasvm;{rg};{vmName}/protectedItems/vm;{rg};{vmName}/recoveryPoints/{recoveryPointId}?api-version=2021-12-01
That JSON will show you:
-
storageAccountType(e.g. Premium_LRS) -
backupManagementType(AzureIaasVM) -
sourceResourceId(original VM) - Timestamps, incremental snapshot chain details, etc.
TL;DR
• GRS on the vault ⇒ geo-replication of vault blobs (backup data) only
• Restore-point metadata always shows source disk SKU (Premium_LRS)
• This is by design, not a metadata bug
—
Reference docs
• Troubleshoot vault transition LRS→GRS (explains vault vs disk redundancy)
• How to restore Azure VM data in portal (storage accounts section)
https://learn.microsoft.com/azure/backup/backup-azure-arm-restore-vms#storage-accounts
• Support matrix for Azure VM disaster-recovery (storage SKU support)
Hope that clarifies things! Let me know if you need any help. Thanks.