From c8da44887488e30d2cf9c7b46d904c582654bccb Mon Sep 17 00:00:00 2001 From: dezeroku Date: Wed, 10 Jul 2024 01:33:12 +0200 Subject: [PATCH] Add check_mode support to hashivault_secret_list --- ansible/modules/hashivault/hashivault_secret_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/modules/hashivault/hashivault_secret_list.py b/ansible/modules/hashivault/hashivault_secret_list.py index dea2c056..f63f8e2f 100644 --- a/ansible/modules/hashivault/hashivault_secret_list.py +++ b/ansible/modules/hashivault/hashivault_secret_list.py @@ -26,7 +26,7 @@ def main(): argspec = hashivault_argspec() - module = hashivault_init(argspec) + module = hashivault_init(argspec, supports_check_mode=True) result = hashivault_secret_list(module.params) if result.get('failed'): module.fail_json(**result)