diff --git a/content/influxdb/clustered/install/configure-cluster.md b/content/influxdb/clustered/install/configure-cluster.md index 3c521f681..bda192af7 100644 --- a/content/influxdb/clustered/install/configure-cluster.md +++ b/content/influxdb/clustered/install/configure-cluster.md @@ -605,8 +605,8 @@ following fields in your `myinfluxdb.yml` configuration file: _If using Microsoft Entra ID (formerly Azure Active Directory), set the name to `azure`_. - `jwksEndpoint`: JWKS endpoint provide by your identity provider. - - `users`: List of OAuth2 user IDs to grant administrative access to - your InfluxDB cluster. IDs are provided by your identity provider. + - `users`: List of OAuth2 users to grant administrative access to your + InfluxDB cluster. IDs are provided by your identity provider. Below are examples for **Keycloak**, **Auth0**, and **Microsoft Entra ID**, but other OAuth2 providers should work as well: @@ -634,7 +634,12 @@ spec: jwksEndpoint: |- https://KEYCLOAK_HOST/auth/realms/KEYCLOAK_REALM/protocol/openid-connect/certs users: - - KEYCLOAK_USER_ID + # All fields are required but `firstName`, `lastName`, and `email` can be + # arbitrary values. However, `id` must match the user ID provided by Keycloak. + - id: KEYCLOAK_USER_ID + firstName: Marty + lastName: McFly + email: mcfly@influxdata.com ``` {{% /code-placeholders %}}