Skip to content

Commit 2b18e06

Browse files
authored
Merge pull request #72366 from ThalathBhagya/master
updated content
2 parents f9e4120 + 55e6c87 commit 2b18e06

6 files changed

+201
-96
lines changed

articles/backup/backup-azure-move-recovery-services-vault.md

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: sogup
66
manager: vijayts
77
ms.service: backup
88
ms.topic: conceptual
9-
ms.date: 03/19/2019
9+
ms.date: 04/08/2019
1010
ms.author: sogup
1111
---
1212

@@ -17,7 +17,9 @@ This article explains how to move a Recovery Services vault configured for Azure
1717
> [!NOTE]
1818
> To move a Recovery Services vault and its associated resources to different resource group, you should first [register the source subscription](#register-the-source-subscription-to-move-your-recovery-services-vault).
1919
20-
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
20+
## Supported geos
21+
22+
Resource move for Recovery Services vault is supported in Australia East, Australia South East, Canada Central, Canada East, South East Asia, East Asia, Central US, North Central US, East US, East US2, South central US, West Central US, West Central US2, West US, Central India, South India, Japan East, Japan West, Korea Central, Korea South, North Europe, West Europe, South Africa North, South Africa West, UK South, UK West, UAE Central and UAE North.
2123

2224
## Prerequisites for moving a vault
2325

@@ -29,12 +31,12 @@ This article explains how to move a Recovery Services vault configured for Azure
2931
- Currently you can move one Recovery Services vault, per region, at a time.
3032
- If a VM doesn’t move with the Recovery Services vault across subscriptions, or to a new resource group, the current VM recovery points remain intact in the vault until they expire.
3133
- Whether the VM is moved with the vault or not, you can always restore the VM from the retained backup history in the vault.
32-
- The Azure Disk Encryption requires that your key vault and VMs reside in the same Azure region and subscription.
33-
- To move a virtual machine with managed disks, see this [article](https://azure.microsoft.com/blog/move-managed-disks-and-vms-now-available/).
34-
- The options for moving resources deployed through the Classic model differ depending on whether you are moving the resources within a subscription, or to a new subscription. For more information, see this [article](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-move-resources#classic-deployment-limitations).
35-
- Backup policies defined for the vault are retained after the vault moves across subscriptions or to a new resource group.
36-
- Currently, you cannot move vaults containing the Azure Files, Azure File Sync, or SQL in IaaS VMs across subscriptions and resource groups. Support for these scenarios will be added in future releases.
37-
- If you move a vault containing VM backup data, across subscriptions, you must move your VMs to the same subscription, and use the same target resource group to continue backups.<br>
34+
- The Azure Disk Encryption requires that your key vault and VMs reside in the same Azure region and subscription.
35+
- To move a virtual machine with managed disks, see this [article](https://azure.microsoft.com/blog/move-managed-disks-and-vms-now-available/).
36+
- The options for moving resources deployed through the Classic model differ depending on whether you are moving the resources within a subscription, or to a new subscription. For more information, see this [article](https://docs.microsoft.com/azure/azure-resource-manager/resource-group-move-resources#classic-deployment-limitations).
37+
- Backup policies defined for the vault are retained after the vault moves across subscriptions or to a new resource group.
38+
- Currently, you cannot move vaults containing the Azure Files, Azure File Sync, or SQL in IaaS VMs across subscriptions and resource groups.
39+
- If you move a vault containing VM backup data, across subscriptions, you must move your VMs to the same subscription, and use the same target resource group to continue backups.<br>
3840

3941
> [!NOTE]
4042
>
@@ -47,24 +49,24 @@ To register the source subscription to **Move** your Recovery Services vault, ru
4749
1. Sign in to your Azure account
4850

4951
```
50-
Connect-AzAccount
52+
Connect-AzureRmAccount
5153
```
5254

5355
2. Select the subscription that you want to register
5456

5557
```
56-
Get-AzSubscription –SubscriptionName "Subscription Name" | Select-AzSubscription
58+
Get-AzureRmSubscription –SubscriptionName "Subscription Name" | Select-AzureRmSubscription
5759
```
5860
3. Register this subscription
5961

6062
```
61-
Register-AzProviderFeature -ProviderNamespace Microsoft.RecoveryServices -FeatureName RecoveryServicesResourceMove
63+
Register-AzureRmProviderFeature -ProviderNamespace Microsoft.RecoveryServices -FeatureName RecoveryServicesResourceMove
6264
```
6365

6466
4. Run the command
6567

6668
```
67-
Register-AzResourceProvider -ProviderNamespace Microsoft.RecoveryServices
69+
Register-AzureRmResourceProvider -ProviderNamespace Microsoft.RecoveryServices
6870
```
6971

7072
Wait for 30 minutes for the subscription to be whitelisted before you start with the move operation using the Azure portal or PowerShell.
@@ -134,18 +136,18 @@ You can move a Recovery Services vault and its associated resources to a differe
134136
135137
## Use PowerShell to move a vault
136138

137-
To move a Recovery Services vault to another resource group, use the `Move-AzResource` cmdlet. `Move-AzResource` requires the resource name and type of resource. You can get both from the `Get-AzRecoveryServicesVault` cmdlet.
139+
To move a Recovery Services vault to another resource group, use the `Move-AzureRMResource` cmdlet. `Move-AzureRMResource` requires the resource name and type of resource. You can get both from the `Get-AzureRmRecoveryServicesVault` cmdlet.
138140

139141
```
140142
$destinationRG = "<destinationResourceGroupName>"
141-
$vault = Get-AzRecoveryServicesVault -Name <vaultname> -ResourceGroupName <vaultRGname>
142-
Move-AzResource -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID
143+
$vault = Get-AzureRmRecoveryServicesVault -Name <vaultname> -ResourceGroupName <vaultRGname>
144+
Move-AzureRmResource -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID
143145
```
144146

145147
To move the resources to different subscription, include the `-DestinationSubscriptionId` parameter.
146148

147149
```
148-
Move-AzResource -DestinationSubscriptionId "<destinationSubscriptionID>" -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID
150+
Move-AzureRmResource -DestinationSubscriptionId "<destinationSubscriptionID>" -DestinationResourceGroupName $destinationRG -ResourceId $vault.ID
149151
```
150152

151153
After executing the above cmdlets, you will be asked to confirm that you want to move the specified resources. Type **Y** to confirm. After a successful validation, the resource moves.

articles/backup/backup-azure-vms-encryption.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Back up and restore encrypted Azure VMs with Azure Backup
3-
description: Describes how to back up and restore encrypted Azure VMs with the Azure Backup service.
3+
description: Describes how to back up and restore encrypted Azure VMs with the Azure Backup service.
44
services: backup
55
author: geetha
66
manager: vijayts
@@ -25,7 +25,7 @@ Azure Backup supports backup of Azure VMs that have their OS/data disks encrypte
2525
Azure Backup can back up and restore Azure VMs using ADE with and without the Azure AD app, as summarized in the following table.
2626

2727
**VM disk type** | **ADE (BEK/dm-crypt)** | **ADE and KEK**
28-
--- | --- | ---
28+
--- | --- | ---
2929
**Unmanaged** | Yes | Yes
3030
**Managed** | Yes | Yes
3131

@@ -89,14 +89,14 @@ In addition, there are a couple of things that you might need to do in some circ
8989
8. If you're using Azure Key Vault, on the vault page, you see a message that Azure Backup needs read-only access to the keys and secrets in the Key Vault.
9090

9191
- If you receive this message, no action is required.
92-
92+
9393
![Access OK](./media/backup-azure-vms-encryption/access-ok.png)
94-
94+
9595
- If you receive this message, you need to set permissions as described in the [procedure below](#provide-permissions).
96-
96+
9797
![Access warning](./media/backup-azure-vms-encryption/access-warning.png)
9898

99-
9. Click **Enable Backup** to deploy the backup policy in the vault, and enable backup for the selected VMs.
99+
9. Click **Enable Backup** to deploy the backup policy in the vault, and enable backup for the selected VMs.
100100

101101

102102
## Trigger a backup job
@@ -123,18 +123,18 @@ To set permissions:
123123
1. In the Azure portal, select **All services**, and search for **Key vaults**.
124124
2. Select the key vault associated with the encrypted VM you're backing up.
125125
3. Select **Access policies** > **Add new**.
126-
4. Select **Select principal**, and then type **Backup Management**.
126+
4. Select **Select principal**, and then type **Backup Management**.
127127
5. Select **Backup Management Service** > **Select**.
128128

129129
![Backup service selection](./media/backup-azure-vms-encryption/select-backup-service.png)
130130

131131
6. In **Add access policy** > **Configure from template (optional)**, select **Azure Backup**.
132132
- The required permissions are prefilled for **Key permissions** and **Secret permissions**.
133-
- If your VM is encrypted using **BEK only**, remove the selection for **Key permissions** since you only need permissions for secrets.
133+
- If your VM is encrypted using **BEK only**, remove the selection for **Key permissions** since you only need permissions for secrets.
134134

135135
![Azure backup selection](./media/backup-azure-vms-encryption/select-backup-template.png)
136136

137-
6. Click **OK**. **Backup Management Service** is added to **Access policies**.
137+
6. Click **OK**. **Backup Management Service** is added to **Access policies**.
138138

139139
![Access policies](./media/backup-azure-vms-encryption/backup-service-access-policy.png)
140140

@@ -153,6 +153,5 @@ You restore encrypted VMs as follows:
153153

154154
If you run into any issues, review
155155

156-
- [Common errors](backup-azure-vms-troubleshoot.md#troubleshoot-backup-of-encrypted-vms) when backing up and restoring encrypted Azure VMs.
157-
- [General](backup-azure-vms-troubleshoot.md) Azure VM issues.
156+
- [Common errors](backup-azure-vms-troubleshoot.md) when backing up and restoring encrypted Azure VMs.
158157
- [Azure VM agent/backup extension](backup-azure-troubleshoot-vm-backup-fails-snapshot-timeout.md) issues.

0 commit comments

Comments
 (0)