0

My recovery vault is in the West US 2 region, and I cannot see the option to enable a Cross region restore as seen in the Azure documentation here.

Screenshot from documentation shows this option: enter image description here

My Azure UI: enter image description here

Question: Why is this feature not available to be enabled for me? The documentation doesn't have any details about the eligibility for support.

1 Answers1

0

Have you registered this feature?

Before you begin, you must register it through PowerShell. Also keep in mind it is a preview feature (have a look at this page).

Register-AzProviderFeature -FeatureName CrossRegionRestore -ProviderNamespace Microsoft.RecoveryServices

FeatureName        ProviderName               RegistrationState
-----------        ------------               -----------------
CrossRegionRestore Microsoft.RecoveryServices Registering

It might take up to 48 hours, you can check status.

Get-AzProviderFeature -FeatureName CrossRegionRestore -ProviderNamespace Microsoft.RecoveryServices

FeatureName        ProviderName               RegistrationState
-----------        ------------               -----------------
CrossRegionRestore Microsoft.RecoveryServices Registered
Taguada
  • 428
  • 1
  • 5
  • 8