Skip to content

Commit

Permalink
Disable no_log warning for override_password (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikafinja authored Nov 4, 2020
1 parent b1a852e commit 472f289
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelogs/fragments/254-disable-no-log-warning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
bugfixes:
- zabbix_user - disable no_log warning for option override_password.
2 changes: 1 addition & 1 deletion plugins/modules/zabbix_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def main():
surname=dict(type='str', default=''),
usrgrps=dict(type='list'),
passwd=dict(type='str', required=False, no_log=True),
override_passwd=dict(type='bool', required=False, default=False),
override_passwd=dict(type='bool', required=False, default=False, no_log=False),
lang=dict(type='str', default='en_GB', choices=['en_GB', 'en_US', 'zh_CN', 'cs_CZ', 'fr_FR',
'he_IL', 'it_IT', 'ko_KR', 'ja_JP', 'nb_NO',
'pl_PL', 'pt_BR', 'pt_PT', 'ru_RU', 'sk_SK',
Expand Down

0 comments on commit 472f289

Please sign in to comment.