Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure Merge Multiple Subscriptions

Tags:

azure

If I use multiple subscriptions to limit access and provisioning by users and later decide I don't need to or find a better method to manage this in Azure can I merge the subscriptions later on without losing all of the Azure resources or copying the VM's over?

like image 345
acruns Avatar asked Nov 10 '22 03:11

acruns


1 Answers

@acruns, to answer your follow-up question "what is a better way to segregate multiple AZ environments like dev/test/prod under a single account?"... my suggestions would be to use Deployment Slots.

Note that all deployment slots for a specific website do share the same Web Hosting Plan, while existing in the same VM instance that hosts the Prod slot.

Source: Azure 70-532 Study Guide

For more info:

  • Staging Slots: https://azure.microsoft.com/en-us/documentation/articles/web-sites-staged-publishing/
  • Web Hosting Plans: https://azure.microsoft.com/blog/2014/04/04/introducing-web-hosting-plans-for-azure-web-sites/

Hope that helps! :-)

like image 119
Shahed C - MSFT Avatar answered Dec 17 '22 07:12

Shahed C - MSFT