[AWS] check mode for ec2_elb and elb_instance (#42694)

what ELBs an instance will be deregistered from prior to actually
executing
pull/19969/merge
yaakov kuperman 6 years ago committed by Ryan Brown
parent 26fd05c288
commit 61b0981341

@ -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':

@ -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':

Loading…
Cancel
Save