summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-04-07 18:47:57 +0200
committerBrian Coca <bcoca@ansible.com>2016-04-07 12:47:57 -0400
commitbc198cc33a202bf98f06bd8c24ff69e1f0e9038c (patch)
treeb8e7c91be1ce6eca69e09896b18ad3893d20549f
parent7120fb4b01af0af0cecce2e03e7f604c5a7913fa (diff)
downloadansible-modules-extras-bc198cc33a202bf98f06bd8c24ff69e1f0e9038c.tar.gz
Avoid token leak by marking it as sensitive with no_log (#1966)
-rw-r--r--notification/flowdock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/notification/flowdock.py b/notification/flowdock.py
index 34dad8db..24fee07a 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),