UPD Azure_rm_common with non-blocking pull request from azure_rm.py (#20338)

pull/20427/head
Baptiste DB 8 years ago committed by Matt Davis
parent 8b9ded3556
commit d7967aa3a1

@ -567,7 +567,11 @@ class AzureRMModuleBase(object):
resource_client = self.rm_client
resource_client.providers.register(key)
except Exception as exc:
self.fail("One-time registration of {0} failed - {1}".format(key, str(exc)))
self.log("One-time registration of {0} failed - {1}".format(key, str(exc)))
self.log("You might need to register {0} using an admin account".format(key))
self.log(("To register a provider using the Python CLI: "
"https://docs.microsoft.com/azure/azure-resource-manager/"
"resource-manager-common-deployment-errors#noregisteredproviderfound"))
@property
def storage_client(self):

Loading…
Cancel
Save