From d79c427722dc790408b4f1298b89b1bed1ac1222 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Fri, 15 Apr 2016 15:45:37 +0200 Subject: [PATCH] Set api_key as no_log, since that's likely something that should be kept private (#2038) --- lib/ansible/modules/extras/notification/pushbullet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/extras/notification/pushbullet.py b/lib/ansible/modules/extras/notification/pushbullet.py index 5ea34f9a53..4700e63b13 100644 --- a/lib/ansible/modules/extras/notification/pushbullet.py +++ b/lib/ansible/modules/extras/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']),