From 197ee8bef42424b62852af1bf81eed6cad134933 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) --- notification/typetalk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification/typetalk.py b/notification/typetalk.py index 8a2dad3d6a2..4a31e3ef89a 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), ),