From 817335ae0dc5020db287b2710da5afb9fc56cc07 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sun, 10 Apr 2016 08:33:11 +0200 Subject: [PATCH] Client_secret is supposed to be kept secret, so mark it as no_log (#1995) --- lib/ansible/modules/extras/notification/typetalk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/notification/typetalk.py b/lib/ansible/modules/extras/notification/typetalk.py index 8a2dad3d6a..4a31e3ef89 100644 --- a/lib/ansible/modules/extras/notification/typetalk.py +++ b/lib/ansible/modules/extras/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), ),