Changing Azure Resource Group location
W

6

24

I have a setup in azure with a bunch of resources combined in a resource group. I want my services to be located in west-europe, so all my resources are there (where possible)

I just noticed that when creating the resource group, i accidentally used West US.

So the current setup is:

Resource Group 1 (West US)

  • App Service 1 (West Europe)
  • App Service 2 (West Europe)
  • SQL Server (West Europe)
  • Storage account (West Europe)
  • ... (West Europe)

Can I change the location of the resource group without having to create a new one and migrate everyting?

And maybe more importantly: Should i change the location or does it not impact anything?

Thanks!

Wakerife answered 19/5, 2016 at 8:12 Comment(0)
S
39

You can't change the location of a resource group.

It wouldn't matter where your resource group is created. It is just a logical container of resources inside it.

Your resources inside a resource group need not be in the same region as that of the resource group. They can be in any region where the resource is supported.

Saponin answered 19/5, 2016 at 8:21 Comment(6)
As a note I was creating a container via the Azure CLI following this tutorial and the location of the resource group DOES matter here. After switching to a resource goup that was WestUS (instead of WestCentralUS) we were able to deploy a container. Hope this helps someone!Chouinard
"It does not matter" means that it does not matter if you ignore the confusion it causes every time.Onstad
Also note that resource group metadata is written to the resource group's location, which can, in fact, matter to international law, depending on a few factors.Suzannasuzanne
"It wouldn't matter where your resource group is created. It is just a logical container of resources inside it. " It is an overstatement. Accessing metadata may be crucial when building reliable applicationsHilton
It doesn't matter it's only that by Default Microsoft have WestUS region having most of the defaults set and supporting more services setup e.g. LUISAnisometric
It does matter. There are policies that are enforced by your region.Chapnick
C
5

You cannot change the location of the resource group, also moving a resource only moves it to a new resource group. The new resource group may have a different location, but that does not change the location of the resource. You could refer to Move resources to new resource group or subscription for details.

Cimah answered 19/5, 2016 at 8:18 Comment(2)
Exactly. Create a new Western Europe resource group, then move resources into your new resource group. Then delete your old resource group that you are no longer using.Selfrespect
The only way I was able to move the App Service to the desired location was to create a new App Service Plan in that location, add a new App Service to that App Service Plan and deploy my app to the App Service.Blowy
F
1

Regarding your last question:

Should i change the location or does it not impact anything?

It does impact somehow, but its little: The resourcegroup holds metadata of the resources within. That metadata is located in the location of the resourcegroup. So the impact is witnessed when you use the Azure Portal and the information is presented to you.

For example: The other day Brazil South was having troubles, and the portal was taking forever on presenting me the information, because I have resource groups located in Brazil South.

Fenestra answered 1/2, 2019 at 16:52 Comment(0)
A
1

Resource group's location can't be changed per se. But by moving resources around I was able to achieve changing the resource group location.

The situation I was in is that I had my resourceGroup set to WestUS location and all the resources within the group set to WestUS2. This was causing issues with my ARM templates. So these are the steps of how I solved this:

  1. Create a new temporary resource group, location doesn't matter for this one, for these steps we are calling this resourceGroup-temp
  2. Move resources to the new resourceGroup-temp. This will depend on your particular situation, I only moved my Cosmos DB and storage account because I knew my FunctionApp and App plans can be recreated from my pipeline upon deployment.
  3. Once empty, delete the old resourceGroup
  4. Create new resourceGroup resourceGroup but with the correct location this time.
  5. Move resources from resourceGroup-temp to resourceGroup
  6. Delete temporary resourceGroup-temp

Voilà you have your resources in a resource group with the same name and now the correct location. Good luck.

Azaria answered 22/8, 2022 at 16:39 Comment(0)
T
0

This is not possible. But you already know that by now. Alternative is that you can shift services/resources from one resource group to other, where both resides in different geo location.

Telemann answered 8/3, 2017 at 12:2 Comment(0)
D
0

use "Azure Resource mover" for below activities

  1. resource group
  2. Subscription
  3. location (Ex. East US to Central Us)
Drafty answered 1/6 at 23:23 Comment(1)
As it’s currently written, your answer is unclear. Please edit to add additional details that will help others understand how this addresses the question asked. You can find more information on how to write good answers in the help center.Equation

© 2022 - 2024 — McMap. All rights reserved.