Skip to content
Snippets Groups Projects
Commit 60fd87c5 authored by Austin's avatar Austin
Browse files

Fixes `no_log` warning for `ipahost` module

Similar to PR 286
This PR explicitly sets `no_log` option for `update_password` attribute to `False`, so that the warning on `no_log` not being set is not issued anymore. Ansible incorrectly issued the warning, as `update_password` does not carry sensitive information.
parent 4aab1599
Branches
Tags
No related merge requests found
...@@ -709,7 +709,7 @@ def main(): ...@@ -709,7 +709,7 @@ def main():
elements='dict', required=False), elements='dict', required=False),
# mod # mod
update_password=dict(type='str', default=None, update_password=dict(type='str', default=None, no_log=False,
choices=['always', 'on_create']), choices=['always', 'on_create']),
# general # general
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment