Some environment variables allow appending a custom identifier to set multiple values. Example: [Object Lambda](https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#object-lambda) ``` export MINIO_LAMBDA_WEBHOOK_ENABLE_myfunction="on" export MINIO_LAMBDA_WEBHOOK_ENDPOINT_myfunction="http://webhook-1.example.net" export MINIO_LAMBDA_WEBHOOK_ENABLE_yourfunction="on" export MINIO_LAMBDA_WEBHOOK_ENDPOINT_yourfunction="http://webhook-2.example.net" ``` Other envvars support this as well, per a recent customer discussion: ``` MINIO_IDENTITY_OPENID_DISPLAY_NAME_something="Different OIDC" ``` **Goals** - [ ] Document which envvars can use `_identifier` to have multiple values. - [ ] If all/most, add something in the [MinIO Server envvars section](https://min.io/docs/minio/linux/reference/minio-server/minio-server.html#environment-variables) describing this.