Catch error in azure related to a failed deployment when creating a vm

This commit is contained in:
James Cammarata 2014-06-12 10:25:31 -05:00
parent 0b8c8b0581
commit 1173a8d6af

View file

@ -301,8 +301,11 @@ def create_virtual_machine(module, azure):
module.fail_json(msg="failed to create the new virtual machine, error was: %s" % str(e))
try:
deployment = azure.get_deployment_by_name(service_name=name, deployment_name=name)
return (changed, urlparse(deployment.url).hostname, deployment)
except WindowsAzureError as e:
module.fail_json(msg="failed to lookup the deployment information for %s, error was: %s" % (name, str(e)))
def terminate_virtual_machine(module, azure):