summaryrefslogtreecommitdiff
path: root/notification
diff options
context:
space:
mode:
authorMichael Scherer <mscherer@users.noreply.github.com>2016-04-15 15:45:37 +0200
committerBrian Coca <bcoca@ansible.com>2016-04-15 09:45:37 -0400
commit03af9ab49193181a6ab186af3a9fffe153e69aff (patch)
tree546c5e14292cedc18d278c9e7f24194ddcf34305 /notification
parent3afe117730c7c4e046254fdd77c25fd01761fd58 (diff)
downloadansible-modules-extras-03af9ab49193181a6ab186af3a9fffe153e69aff.tar.gz
Set api_key as no_log, since that's likely something that should be kept private (#2038)
Diffstat (limited to 'notification')
-rw-r--r--notification/pushbullet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/notification/pushbullet.py b/notification/pushbullet.py
index dfd89af5..0d5ab7c4 100644
--- a/notification/pushbullet.py
+++ b/notification/pushbullet.py
@@ -108,7 +108,7 @@ else:
def main():
module = AnsibleModule(
argument_spec = dict(
- api_key = dict(type='str', required=True),
+ api_key = dict(type='str', required=True, no_log=True),
channel = dict(type='str', default=None),
device = dict(type='str', default=None),
push_type = dict(type='str', default="note", choices=['note', 'link']),