Add check mode support (#3522)

pull/18777/head
Ben Tomasik 8 years ago committed by Matt Clay
parent 8a02b5d702
commit 163f16658e

@ -218,7 +218,8 @@ def main():
names={'default': [], 'type': 'list'}
)
)
module = AnsibleModule(argument_spec=argument_spec)
module = AnsibleModule(argument_spec=argument_spec,
supports_check_mode=True)
if not HAS_BOTO:
module.fail_json(msg='boto required for this module')

Loading…
Cancel
Save