Skip to content

Commit

Permalink
Merge pull request #487 from dezeroku/hashivault_secret_list_check_mode
Browse files Browse the repository at this point in the history
Add check_mode support to hashivault_secret_list
  • Loading branch information
TerryHowe authored Jul 16, 2024
2 parents 7461f5b + c8da448 commit abf61ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/modules/hashivault/hashivault_secret_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit abf61ca

Please sign in to comment.