UPD Azure_rm_common with non-blocking pull request from azure_rm.py (#20338)
This commit is contained in:
parent
8b9ded3556
commit
d7967aa3a1
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue