Tag not monitored by Microsoft.
Hello JMN-2253, You are looking for a structured breakdown of the migration process we discussed, specifically regarding moving AI Resources, VNETs, and Web Apps to a subscription in a different Entra ID Tenant.
Moving resources directly across Entra ID (formerly Azure AD) tenants is not supported. To achieve this, you must transfer the entire subscription to the new tenant or re-create the resources.
Azure uses the Tenant ID as the security boundary.
- AI Services: Rely on the Tenant for authentication tokens.
- Web Apps: Often use System-Assigned Managed Identities that are unique to the source tenant's directory.
- VNETs: While the IP structure stays, any cross-tenant peering requires a new handshake because the security context has changed.
AI Services: Azure AI resources are often tied to the tenant for authentication. You must re-create Role Assignments (like Cognitive Services User) for users in the new tenant. If you used Managed Identities for AI Search or storage access, those must be re-configured.
Virtual Networks (VNETs): If your VNET was peered to another VNET in the old tenant, that peering will break. You must delete the old peering and establish a Cross-Tenant Peering if the other VNET stayed behind, or re-establish local peering if both moved.
Web Apps (App Service): If your Web App uses a Managed Identity to talk to a SQL Database or Key Vault, it will stop working. Disable and re-enable the System-Assigned Managed Identity on the Web App to generate a new Identity ID in the new tenant, then grant that new ID permissions to your resources.
These typically remain intact, but if you used Key Vault-stored certificates, the connection to the Key Vault will need to be updated.
Key Vault: Key Vault is strictly tied to a Tenant ID. After the move, run the following Azure CLI command to update it:
az keyvault update --name MyKeyVault --resource-group MyRG --target-tenant-id <New-Tenant-ID>
Hope this helps! If the provided answer was helpful, please do Accept the answer and Upvote, If you need further assistance, please do let us know, Thanks