MADFROST
MADFROST

Reputation: 1723

Is it possible to migrate resources from subscription A to subscription B in Azure?

I need to migrate a resource from subscription A to subscription B. But, when I read the documentation, there might some of the resource can't be migrated.Source

So, what is the best practice for migrating from subscription A to subscription B. On my resource there are Virtual Machine and PostgreSQL database. Is it I just manually backup my file to local and redeploy it to a new subscription, and backup my database to local ?

These are my resources that need to migrate.

enter image description here

Upvotes: 0

Views: 678

Answers (1)

UserP
UserP

Reputation: 314

The resources you have are Microsoft.Storage (Disks), Microsoft.Network (Network interfaces and private endpoint), Microsoft.Compute (Virtual Machine) and Microsoft.DBforPostgreSQL (azure database for postgresql).

Except for Private endpoints you can move all other resources to another subscription.

private endpoints cannot be moved(image)

Reference : Steps to move resources to another subscription.

Upvotes: 1

Related Questions