mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
password required
This commit is contained in:
parent
f5532b7904
commit
a0dad8e683
1 changed files with 2 additions and 0 deletions
|
@ -456,6 +456,8 @@ def main():
|
||||||
module.fail_json(msg='location parameter is required for new instance')
|
module.fail_json(msg='location parameter is required for new instance')
|
||||||
if not module.params.get('storage_account'):
|
if not module.params.get('storage_account'):
|
||||||
module.fail_json(msg='storage_account parameter is required for new instance')
|
module.fail_json(msg='storage_account parameter is required for new instance')
|
||||||
|
if not module.params.get('password'):
|
||||||
|
module.fail_json(msg='password parameter is required for new instance')
|
||||||
(changed, public_dns_name, deployment) = create_virtual_machine(module, azure)
|
(changed, public_dns_name, deployment) = create_virtual_machine(module, azure)
|
||||||
|
|
||||||
module.exit_json(changed=changed, public_dns_name=public_dns_name, deployment=json.loads(json.dumps(deployment, default=lambda o: o.__dict__)))
|
module.exit_json(changed=changed, public_dns_name=public_dns_name, deployment=json.loads(json.dumps(deployment, default=lambda o: o.__dict__)))
|
||||||
|
|
Loading…
Reference in a new issue