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

Allow check mode when gathering ec2 facts

This commit is contained in:
ipauldev 2013-07-11 19:42:15 -05:00 committed by Paul Hassinger
parent fba1f7ef42
commit 5656e9d66e

View file

@ -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)