mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-06 10:43:14 +00:00
cloudstack: make facts run in check mode
This commit is contained in:
@@ -227,7 +227,7 @@ def main():
|
||||
]),
|
||||
meta_data_host=dict(),
|
||||
),
|
||||
supports_check_mode=False
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
||||
if not HAS_LIB_YAML:
|
||||
|
||||
@@ -289,7 +289,7 @@ def main():
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False,
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
||||
cs_instance_facts = AnsibleCloudStackInstanceFacts(module=module).run()
|
||||
|
||||
@@ -193,7 +193,7 @@ def main():
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=False,
|
||||
supports_check_mode=True,
|
||||
)
|
||||
|
||||
cs_zone_facts = AnsibleCloudStackZoneFacts(module=module).run()
|
||||
|
||||
Reference in New Issue
Block a user