mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Do not leak the channel token in log (#3117)
This commit is contained in:
committed by
Matt Clay
parent
c50ac02b30
commit
343134bd0f
@@ -91,7 +91,7 @@ def do_notify_grove(module, channel_token, service, message, url=None, icon_url=
|
||||
def main():
|
||||
module = AnsibleModule(
|
||||
argument_spec = dict(
|
||||
channel_token = dict(type='str', required=True),
|
||||
channel_token = dict(type='str', required=True, no_log=True),
|
||||
message = dict(type='str', required=True),
|
||||
service = dict(type='str', default='ansible'),
|
||||
url = dict(type='str', default=None),
|
||||
|
||||
Reference in New Issue
Block a user