mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
azure - fixed missing return statement
This commit is contained in:
parent
188a13efc0
commit
98ff559fa0
1 changed files with 2 additions and 3 deletions
|
@ -223,7 +223,6 @@ def create_virtual_machine(module, azure):
|
||||||
Returns:
|
Returns:
|
||||||
True if a new virtual machine was created, false otherwise
|
True if a new virtual machine was created, false otherwise
|
||||||
"""
|
"""
|
||||||
|
|
||||||
name = module.params.get('name')
|
name = module.params.get('name')
|
||||||
hostname = module.params.get('hostname') or name + ".cloudapp.net"
|
hostname = module.params.get('hostname') or name + ".cloudapp.net"
|
||||||
endpoints = module.params.get('endpoints').split(',')
|
endpoints = module.params.get('endpoints').split(',')
|
||||||
|
|
Loading…
Reference in a new issue