mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 03:00:23 -07:00
switched to 'support check mode' as it does not make changes and gathers information that might be needed for other tasks to check
This commit is contained in:
parent
83021279a1
commit
8e255afbec
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
api_url = dict(default='https://api.ipify.org'),
|
api_url = dict(default='https://api.ipify.org'),
|
||||||
),
|
),
|
||||||
supports_check_mode=False
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
|
|
||||||
ipify_facts = IpifyFacts().run()
|
ipify_facts = IpifyFacts().run()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue