1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[AWS] check mode for ec2_elb and elb_instance ()

what ELBs an instance will be deregistered from prior to actually
executing
This commit is contained in:
yaakov kuperman 2018-07-19 08:13:16 -04:00 committed by Ryan Brown
parent 26fd05c288
commit 61b0981341
2 changed files with 12 additions and 8 deletions
lib/ansible/modules/cloud/amazon

View file

@ -332,6 +332,7 @@ def main():
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True
)
if not HAS_BOTO:
@ -359,6 +360,7 @@ def main():
msg = "ELB %s does not exist" % elb
module.fail_json(msg=msg)
if not module.check_mode:
if module.params['state'] == 'present':
elb_man.register(wait, enable_availability_zone, timeout)
elif module.params['state'] == 'absent':

View file

@ -328,6 +328,7 @@ def main():
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True
)
if not HAS_BOTO:
@ -355,6 +356,7 @@ def main():
msg = "ELB %s does not exist" % elb
module.fail_json(msg=msg)
if not module.check_mode:
if module.params['state'] == 'present':
elb_man.register(wait, enable_availability_zone, timeout)
elif module.params['state'] == 'absent':