Skip to content

Commit

Permalink
Disable no_log warning for override_password
Browse files Browse the repository at this point in the history
  • Loading branch information
mikafinja committed Nov 3, 2020
1 parent b1a852e commit 0f01110
Showing 1 changed file with 1 addition and 1 deletion.
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 0f01110

Please sign in to comment.