mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Avoid token leak by marking it as sensitive with no_log (#1966)
This commit is contained in:
parent
ed69d8335e
commit
e7e1a8bfea
1 changed files with 1 additions and 1 deletions
|
@ -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),
|
||||
|
|
Loading…
Reference in a new issue