1
0
mirror of https://github.com/minio/docs.git synced 2025-07-30 07:03:26 +03:00

DOCS-898: Synchronous Bucket Notifications, config API secret redaction (#960)

Closes #898 

- Adds a short section on synchronous vs asynchronous bucket
notifications
- Adds a note on specific configs which now return redacted data on `mc
admin config get`
- Found a few new webhook lambda envvars to add
This commit is contained in:
Ravind Kumar
2023-08-21 11:19:20 -04:00
committed by GitHub
parent 9ea539b8ab
commit ac72345962
6 changed files with 120 additions and 2 deletions

View File

@ -108,6 +108,17 @@ To enable MinIO to call the handler, register the handler function as a webhook
Register an endpoint for a handler function.
For multiple handlers, set this environment variable for each function endpoint.
MinIO also supports the following environment variables for authenticated webhook endpoints:
:envvar:`MINIO_LAMBDA_WEBHOOK_AUTH_TOKEN_functionanme <MINIO_LAMBDA_WEBHOOK_AUTH_TOKEN>`
Specify the opaque string or JWT authorization token for authenticating to the webhook.
:envvar:`MINIO_LAMBDA_WEBHOOK_CLIENT_CERT_functionname <MINIO_LAMBDA_WEBHOOK_CLIENT_CERT>`
Specify the client certificate to use for mTLS authentication to the webhook.
:envvar:`MINIO_LAMBDA_WEBHOOK_CLIENT_KEY_functionname <MINIO_LAMBDA_WEBHOOK_CLIENT_CERT>`
Specify the private key to use for mTLS authentication to the webhook.
Restart MinIO to apply the changes.