Commit 27fcfe9c by Michael DeHaan

Merge pull request #3508 from ipauldev/devel

Allow check mode when gathering ec2 facts
parents 8fe15f0a 5656e9d6
......@@ -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