Search code examples
azurecloudbizspark

Moving Azure resource to new subscription - Migrating from BizSpark to BizSpark Plus


I am trying to move all my current Azure services to my new Azure BizSpark Plus account. Following this article, there is this little note that needs to be checked before the move (see image below):

I understand that tools and scripts associated with moved resources will not work until I update them to use new resource IDs

enter image description here

What does this mean? Will I have to update my Azure API keys or Azure script URL in my client apps? Should I expect a downtime? How can I update the 'tools and scripts' to use the 'new resource ID'?

Note: the little exclamation mark lead back to the same article mentioned above.


Solution

  • Your IDs for your resources are in the format:

    resource/subscriptions/[subscription id]/resourceGroups/[resource group name]/providers/Microsoft.Web/sites/[app name]/appServices

    As you can see, the resource group name is part of that unique Id, so moving it to a new resource group changes that Id.

    The warning is simply stating that if you currently have any tools or scripts that reference the resource using the old resource group name, they will need to be updated to the use the new Id.