mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Prevent password leaks in notification/irc
This commit is contained in:
parent
67b2623e92
commit
3b79c1621b
1 changed files with 2 additions and 2 deletions
|
@ -259,9 +259,9 @@ def main():
|
||||||
"light_gray", "none"]),
|
"light_gray", "none"]),
|
||||||
style=dict(default="none", choices=["underline", "reverse", "bold", "italic", "none"]),
|
style=dict(default="none", choices=["underline", "reverse", "bold", "italic", "none"]),
|
||||||
channel=dict(required=False),
|
channel=dict(required=False),
|
||||||
key=dict(),
|
key=dict(no_log=True),
|
||||||
topic=dict(),
|
topic=dict(),
|
||||||
passwd=dict(),
|
passwd=dict(no_log=True),
|
||||||
timeout=dict(type='int', default=30),
|
timeout=dict(type='int', default=30),
|
||||||
part=dict(type='bool', default=True),
|
part=dict(type='bool', default=True),
|
||||||
use_ssl=dict(type='bool', default=False)
|
use_ssl=dict(type='bool', default=False)
|
||||||
|
|
Loading…
Reference in a new issue