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.
This commit is contained in:
Rafael Guterres Jeffman
2020-05-28 12:28:38 -03:00
parent 59cb7eebd9
commit bf0b1ed75f

View File

@@ -817,7 +817,7 @@ def main():
preserve=dict(required=False, type='bool', default=None),
# mod
update_password=dict(type='str', default=None,
update_password=dict(type='str', default=None, no_log=False,
choices=['always', 'on_create']),
# general