Skip to content
Snippets Groups Projects
Commit 5b538628 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Fixes no_log warning for `update_password`.

This patch explicitly set `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 44af47d9
Branches
Tags
No related merge requests found
...@@ -817,7 +817,7 @@ def main(): ...@@ -817,7 +817,7 @@ def main():
preserve=dict(required=False, type='bool', default=None), preserve=dict(required=False, type='bool', default=None),
# 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