From e7e1a8bfeafb5097a167bb66c34f6ba590aa066e Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Thu, 7 Apr 2016 18:47:57 +0200 Subject: [PATCH] Avoid token leak by marking it as sensitive with no_log (#1966) --- lib/ansible/modules/extras/notification/flowdock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/notification/flowdock.py b/lib/ansible/modules/extras/notification/flowdock.py index 34dad8db37..24fee07af1 100644 --- a/lib/ansible/modules/extras/notification/flowdock.py +++ b/lib/ansible/modules/extras/notification/flowdock.py @@ -113,7 +113,7 @@ def main(): module = AnsibleModule( argument_spec=dict( - token=dict(required=True), + token=dict(required=True, no_log=True), msg=dict(required=True), type=dict(required=True, choices=["inbox","chat"]), external_user_name=dict(required=False),