summaryrefslogtreecommitdiff
path: root/notification
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-04-04 15:31:12 +0200
committerBrian Coca <bcoca@ansible.com>2016-04-04 09:31:12 -0400
commit719b9b229bec4d6589a6a7a7c801001cd7931f58 (patch)
tree0f0e422a8d72075b81ad03cbda2fa6f41d9f9478 /notification
parent95e07d2f510493ae5624d6273d7fbc10ad474e4d (diff)
downloadansible-modules-extras-719b9b229bec4d6589a6a7a7c801001cd7931f58.tar.gz
Prevent password leaks in notification/irc
Diffstat (limited to 'notification')
-rw-r--r--notification/irc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/notification/irc.py b/notification/irc.py
index d87d26d3..95cd5bba 100644
--- a/notification/irc.py
+++ b/notification/irc.py
@@ -259,9 +259,9 @@ def main():
"light_gray", "none"]),
style=dict(default="none", choices=["underline", "reverse", "bold", "italic", "none"]),
channel=dict(required=False),
- key=dict(),
+ key=dict(no_log=True),
topic=dict(),
- passwd=dict(),
+ passwd=dict(no_log=True),
timeout=dict(type='int', default=30),
part=dict(type='bool', default=True),
use_ssl=dict(type='bool', default=False)