Movement of resources from one Azure subscription in one AD to another subscription in another AD

VJ-8370 446 Reputation points
2020-07-16T10:22:50.63+00:00

Hi,

Could you please let me know what all resources can be moved from Source Azure subscription to another subscription. I know we cannot do it using Azure migrate.

Source subscription is in one AD and Target subscription is in another AD.

Below are the list of resources configured in Source subscription. Could you please let me know

  1. What resources can be moved?
  2. What resources cannot be moved?
  3. What are the configurations required to be done after moving?
  4. What are the pre-requisites to be checked before the movement?

Resources:

AD DS
Adv. Threat Protection
Advisor
Application Gateways
Availability Sets
Azure AD
Azure Advisor
Azure Bastion
Azure Firewall
Azure Information Protection
Azure Migrate
Azure Monitor
Backup
Connections
Cost Management & Billing
DB Migration
DDoS Protection
ExpressRoute
File Storage
Instances
IP Addresses
Key Vault
Load Balancers
Local Area Gateways
Managed Disks
Microsoft SQL (PaaS)
Network interfaces
Network Watcher
Policy
Public IPs
Resource Groups
Security Centre
Site Recovery
Storage Accounts
Subnets
Subscription
Traffic Manager
Users in Azure AD
Virtual Machines
Virtual Network
Virtual WAN
VM Scale Sets
VNETs
VPN Gateway
VPNs

How do we determine if any of the services is creating an application object?

Also, please suggest any step by step documentation guide for the same.

Regards,
VJ

Azure Migrate
Azure Migrate
A central hub of Azure cloud migration services and tools to discover, assess, and migrate workloads to the cloud.
736 questions
{count} votes

Accepted answer
  1. bharathn-msft 5,086 Reputation points Microsoft Employee
    2020-07-22T19:33:32.997+00:00

    @VJ-8370 To move Azure Resources one of the pre-requisite item is " The source and destination subscriptions must exist within the same Azure Active Directory tenant" , this has been also called out in this documentation. To check that both source and destination subscriptions have the same tenant ID, use can Azure PowerShell or Azure CLI.

    For Azure PowerShell, use:

     (Get-AzSubscription -SubscriptionName <your-source-subscription>).TenantId
     (Get-AzSubscription -SubscriptionName <your-destination-subscription>).TenantId
    

    For CLI , use:

     az account show --subscription <your-source-subscription> --query tenantId
     az account show --subscription <your-destination-subscription> --query tenantId
    

    If the tenant IDs for the source and destination subscriptions aren't the same, use the following methods to reconcile the tenant IDs (provided it fits your scenario) :

    For further information on moving Azure resource including checklist, list of resources which can be moved and different methods associated , please review this document.

    Hope the above information , please review and revert back if you have any further queries. Thank you

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. VJ-8370 446 Reputation points
    2020-08-07T05:51:52.06+00:00

    Thank you, Bharath for the detailed response.

    Regards,
    VJ

    0 comments No comments