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

[cloud] Add supports_check_mode to ec2_ami_find (#22180)

ec2_ami_find is a facts module, and makes no
changes, so trivially supports check mode
This commit is contained in:
Will Thames 2017-03-04 04:34:38 +10:00 committed by Ryan Brown
parent 19b49a9224
commit 699f0e861c

View file

@ -330,6 +330,7 @@ def main():
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True,
)
if not HAS_BOTO: