fix(clustered): adjust keycloak AppInstance config example (#5536)

* fix(clustered): adjust keycloak AppInstance config example

* Update content/influxdb/clustered/install/configure-cluster.md

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>

---------

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
pull/5537/head
wayne 2024-07-25 16:43:47 -06:00 committed by GitHub
parent 154b9a2e38
commit 13c5e771bb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -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 %}}