Skip to content

Commit 6532ad0

Browse files
authored
docs: add other required fields to user setup for clustered (#5639)
1 parent 44ce6e9 commit 6532ad0

File tree

3 files changed

+48
-8
lines changed

3 files changed

+48
-8
lines changed

content/influxdb/clustered/admin/users/add.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,12 @@ spec:
119119
jwksEndpoint: |-
120120
https://AUTH0_HOST/.well-known/openid-configuration
121121
users:
122-
- AUTH0_USER_ID
122+
# All fields are required but `firstName`, `lastName`, and `email` can be
123+
# arbitrary values. However, `id` must match the user ID provided by Auth0.
124+
- id: AUTH0_USER_ID
125+
firstName: Marty
126+
lastName: McFly
127+
123128
```
124129
125130
{{% /code-placeholders %}}
@@ -152,7 +157,12 @@ spec:
152157
jwksEndpoint: |-
153158
https://login.microsoftonline.com/AZURE_TENANT_ID/discovery/v2.0/keys
154159
users:
155-
- AZURE_USER_ID
160+
# All fields are required but `firstName`, `lastName`, and `email` can be
161+
# arbitrary values. However, `id` must match the user ID provided by Azure.
162+
- id: AZURE_USER_ID
163+
firstName: Marty
164+
lastName: McFly
165+
156166
```
157167
158168
{{% /code-placeholders %}}
@@ -249,7 +259,12 @@ admin:
249259
https://AUTH0_HOST/.well-known/openid-configuration
250260
# The list of users to grant access to Clustered via influxctl
251261
users:
252-
- AUTH0_USER_ID
262+
# All fields are required but `firstName`, `lastName`, and `email` can be
263+
# arbitrary values. However, `id` must match the user ID provided by Auth0.
264+
- id: AUTH0_USER_ID
265+
firstName: Marty
266+
lastName: McFly
267+
253268
```
254269
255270
{{% /code-placeholders %}}
@@ -280,7 +295,12 @@ admin:
280295
https://login.microsoftonline.com/AZURE_TENANT_ID/discovery/v2.0/keys
281296
# The list of users to grant access to Clustered via influxctl
282297
users:
283-
- AZURE_USER_ID
298+
# All fields are required but `firstName`, `lastName`, and `email` can be
299+
# arbitrary values. However, `id` must match the user ID provided by Azure.
300+
- id: AZURE_USER_ID
301+
firstName: Marty
302+
lastName: McFly
303+
284304
```
285305
286306
{{% /code-placeholders %}}

content/influxdb/clustered/install/configure-cluster/directly.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,12 @@ spec:
747747
jwksEndpoint: |-
748748
https://AUTH0_HOST/.well-known/openid-configuration
749749
users:
750-
- AUTH0_USER_ID
750+
# All fields are required but `firstName`, `lastName`, and `email` can be
751+
# arbitrary values. However, `id` must match the user ID provided by Auth0.
752+
- id: AUTH0_USER_ID
753+
firstName: Marty
754+
lastName: McFly
755+
751756
```
752757
753758
{{% /code-placeholders %}}
@@ -782,7 +787,12 @@ spec:
782787
jwksEndpoint: |-
783788
https://login.microsoftonline.com/AZURE_TENANT_ID/discovery/v2.0/keys
784789
users:
785-
- AZURE_USER_ID
790+
# All fields are required but `firstName`, `lastName`, and `email` can be
791+
# arbitrary values. However, `id` must match the user ID provided by Azure.
792+
- id: AZURE_USER_ID
793+
firstName: Marty
794+
lastName: McFly
795+
786796
```
787797
788798
{{% /code-placeholders %}}

content/influxdb/clustered/install/configure-cluster/use-helm.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,12 @@ admin:
764764
https://AUTH0_HOST/.well-known/openid-configuration
765765
# The list of users to grant access to Clustered via influxctl
766766
users:
767-
- AUTH0_USER_ID
767+
# All fields are required but `firstName`, `lastName`, and `email` can be
768+
# arbitrary values. However, `id` must match the user ID provided by Auth0.
769+
- id: AUTH0_USER_ID
770+
firstName: Marty
771+
lastName: McFly
772+
768773
```
769774
770775
{{% /code-placeholders %}}
@@ -797,7 +802,12 @@ admin:
797802
https://login.microsoftonline.com/AZURE_TENANT_ID/discovery/v2.0/keys
798803
# The list of users to grant access to Clustered via influxctl
799804
users:
800-
- AZURE_USER_ID
805+
# All fields are required but `firstName`, `lastName`, and `email` can be
806+
# arbitrary values. However, `id` must match the user ID provided by Azure.
807+
- id: AZURE_USER_ID
808+
firstName: Marty
809+
lastName: McFly
810+
801811
```
802812
803813
{{% /code-placeholders %}}

0 commit comments

Comments
 (0)