|
|
@ -96,7 +96,7 @@ try:
|
|
|
|
except ImportError:
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.azure_rm_common import AzureRMModuleBase
|
|
|
|
from ansible.module_utils.azure_rm_common import AzureRMModuleBase, normalize_location_name
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def resource_group_to_dict(rg):
|
|
|
|
def resource_group_to_dict(rg):
|
|
|
@ -162,7 +162,7 @@ class AzureRMResourceGroup(AzureRMModuleBase):
|
|
|
|
if update_tags:
|
|
|
|
if update_tags:
|
|
|
|
changed = True
|
|
|
|
changed = True
|
|
|
|
|
|
|
|
|
|
|
|
if self.location and self.location != results['location']:
|
|
|
|
if self.location and normalize_location_name(self.location) != results['location']:
|
|
|
|
self.fail("Resource group '{0}' already exists in location '{1}' and cannot be "
|
|
|
|
self.fail("Resource group '{0}' already exists in location '{1}' and cannot be "
|
|
|
|
"moved.".format(self.name, results['location']))
|
|
|
|
"moved.".format(self.name, results['location']))
|
|
|
|
except CloudError:
|
|
|
|
except CloudError:
|
|
|
|