mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-30 14:21:26 -07: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…
Add table
Add a link
Reference in a new issue