Set api_key as no_log, since that's likely something that should be kept private (#2038)
This commit is contained in:
parent
3afe117730
commit
03af9ab491
1 changed files with 1 additions and 1 deletions
|
@ -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']),
|
||||
|
|
Loading…
Reference in a new issue