From bc198cc33a202bf98f06bd8c24ff69e1f0e9038c 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) --- notification/flowdock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notification/flowdock.py b/notification/flowdock.py index 34dad8db375..24fee07af13 100644 --- a/notification/flowdock.py +++ b/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),