Skip to content

Commit 21ee526

Browse files
authored
Merge pull request #276982 from AbhishekMallick-MS/Jun-3-2024-Entra
Entra - Screen update
2 parents 5941cfa + fecae56 commit 21ee526

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

articles/backup/backup-managed-disks-ps.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Back up Azure Managed Disks using Azure PowerShell
33
description: Learn how to back up Azure Managed Disks using Azure PowerShell.
44
ms.topic: conceptual
5-
ms.date: 05/09/2024
5+
ms.date: 06/03/2024
66
ms.custom: devx-track-azurepowershell
77
author: AbhishekMallick-MS
88
ms.author: v-abhmallick
@@ -28,7 +28,7 @@ For information on the Azure Disk backup region availability, supported scenario
2828

2929
A Backup vault is a storage entity in Azure that holds backup data for various newer workloads that Azure Backup supports, such as Azure Database for PostgreSQL servers and Azure Disks. Backup vaults make it easy to organize your backup data, while minimizing management overhead. Backup vaults are based on the Azure Resource Manager model of Azure, which provides enhanced capabilities to help secure backup data.
3030

31-
Before creating a backup vault, choose the storage redundancy of the data within the vault. Then proceed to create the backup vault with that storage redundancy and the location. In this article, we will create a backup vault "TestBkpVault" in "westus" region under the resource group "testBkpVaultRG". Use the [New-AzDataProtectionBackupVault](/powershell/module/az.dataprotection/new-azdataprotectionbackupvault) command to create a backup vault.Learn more about [creating a Backup vault](./create-manage-backup-vault.md#create-a-backup-vault).
31+
Before creating a backup vault, choose the storage redundancy of the data within the vault. Then proceed to create the backup vault with that storage redundancy and the location. In this article, we'll create a backup vault "TestBkpVault" in "westus" region under the resource group "testBkpVaultRG". Use the [New-AzDataProtectionBackupVault](/powershell/module/az.dataprotection/new-azdataprotectionbackupvault) command to create a backup vault. Learn more about [creating a Backup vault](./create-manage-backup-vault.md#create-a-backup-vault).
3232

3333
```azurepowershell-interactive
3434
$storageSetting = New-AzDataProtectionBackupVaultStorageSettingObject -Type LocallyRedundant/GeoRedundant -DataStoreType VaultStore
@@ -134,7 +134,7 @@ Once the vault and policy are created, there are 3 critical points that the user
134134

135135
#### Disk to be protected
136136

137-
Fetch the ARM ID of the disk to be protected. This will serve as the identifier of the disk. We will use an example of a disk named "PSTestDisk" under a resource group "diskrg" under a different subscription.
137+
Fetch the ARM ID of the disk to be protected. This will serve as the identifier of the disk. We'll use an example of a disk named "PSTestDisk" under a resource group "diskrg" under a different subscription.
138138

139139
```azurepowershell-interactive
140140
$DiskId = "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx/resourcegroups/diskrg/providers/Microsoft.Compute/disks/PSTestDisk"
@@ -190,7 +190,7 @@ To configure backup of managed disks, ensure the following prerequisites:
190190

191191
1. Go to **Backup vault** -> **Identity** and select **Azure role assignments**.
192192

193-
:::image type="content" source="./media/backup-managed-disks-ps/select-azure-role-assignments-inline.png" alt-text="Screenshot showing the selection of Azure role assignments." lightbox="./media/backup-managed-disks-ps/select-azure-role-assignments-expanded.png":::
193+
:::image type="content" source="./media/backup-managed-disks-ps/select-azure-role-assignments.png" alt-text="Screenshot showing the selection of Azure role assignments." lightbox="./media/backup-managed-disks-ps/select-azure-role-assignments.png":::
194194

195195
1. Verify that the role, resource name, and resource type are correct.
196196

@@ -221,7 +221,7 @@ Fetch the relevant backup instance on which the user desires to trigger a backup
221221
$instance = Get-AzDataProtectionBackupInstance -SubscriptionId "xxxx-xxx-xxx" -ResourceGroupName "testBkpVaultRG" -VaultName $TestBkpVault.Name -Name "BackupInstanceName"
222222
```
223223

224-
You can specify a retention rule while triggering backup. To view the retention rules in policy, navigate through the policy object for retention rules. In the below example, the rule with name 'default' is displayed and we will use that rule for the on-demand backup
224+
You can specify a retention rule while triggering backup. To view the retention rules in policy, navigate through the policy object for retention rules. In the below example, the rule with name 'default' is displayed and we'll use that rule for the on-demand backup
225225

226226
```azurepowershell-interactive
227227
$policyDefn.PolicyRule | fl
@@ -261,4 +261,4 @@ You can also use Az.ResourceGraph to track all jobs across all backup vaults. Us
261261

262262
## Next steps
263263

264-
- [Restore Azure Managed Disks using Azure PowerShell](restore-managed-disks-ps.md)
264+
- [Restore Azure Managed Disks using Azure PowerShell](restore-managed-disks-ps.md)
48.1 KB
Loading

0 commit comments

Comments
 (0)