Set api_key as no_log, since that's likely something that should be kept private (#2038)

This commit is contained in:
Michael Scherer 2016-04-15 15:45:37 +02:00 committed by Matt Clay
parent 94c5e16fe3
commit d79c427722

View file

@ -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']),