Commit 5656e9d6 by ipauldev Committed by Paul Hassinger

Allow check mode when gathering ec2 facts

parent fba1f7ef
......@@ -155,7 +155,8 @@ def main():
ec2_facts_result = dict(changed=False, ansible_facts=ec2_facts)
module = AnsibleModule(
argument_spec = dict()
argument_spec = dict(),
supports_check_mode = True,
)
module.exit_json(**ec2_facts_result)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment