summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-04-10 08:33:11 +0200
committerToshio Kuratomi <a.badger@gmail.com>2016-04-09 23:33:11 -0700
commit197ee8bef42424b62852af1bf81eed6cad134933 (patch)
tree310d6409c0c8c687a569c860d7e6ed1304e5c5b5
parent5abb914315864b714395863af99c0ac1bd66a7ba (diff)
downloadansible-modules-extras-197ee8bef42424b62852af1bf81eed6cad134933.tar.gz
Client_secret is supposed to be kept secret, so mark it as no_log (#1995)
-rw-r--r--notification/typetalk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/notification/typetalk.py b/notification/typetalk.py
index 8a2dad3d..4a31e3ef 100644
--- a/notification/typetalk.py
+++ b/notification/typetalk.py
@@ -104,7 +104,7 @@ def main():
module = AnsibleModule(
argument_spec=dict(
client_id=dict(required=True),
- client_secret=dict(required=True),
+ client_secret=dict(required=True, no_log=True),
topic=dict(required=True, type='int'),
msg=dict(required=True),
),