mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Move the order of argument processing
This commit is contained in:
@@ -84,18 +84,16 @@ def main():
|
|||||||
mutually_exclusive=[['public_key', 'public_key_file']])
|
mutually_exclusive=[['public_key', 'public_key_file']])
|
||||||
module = AnsibleModule(argument_spec, **module_kwargs)
|
module = AnsibleModule(argument_spec, **module_kwargs)
|
||||||
|
|
||||||
if module.params['public_key_file']:
|
|
||||||
public_key = open(module.params['public_key_file']).read()
|
|
||||||
else:
|
|
||||||
public_key = module.params['public_key']
|
|
||||||
|
|
||||||
if not HAS_SHADE:
|
|
||||||
module.fail_json(msg='shade is required for this module')
|
|
||||||
|
|
||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
name = module.params['name']
|
name = module.params['name']
|
||||||
public_key = module.params['public_key']
|
public_key = module.params['public_key']
|
||||||
|
|
||||||
|
if module.params['public_key_file']:
|
||||||
|
public_key = open(module.params['public_key_file']).read()
|
||||||
|
|
||||||
|
if not HAS_SHADE:
|
||||||
|
module.fail_json(msg='shade is required for this module')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
cloud = shade.openstack_cloud(**module.params)
|
cloud = shade.openstack_cloud(**module.params)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user