Skip to content

Commit

Permalink
docs(identity): fix identity docs (#3704)
Browse files Browse the repository at this point in the history
* docs(identity): update example to use tenant id instead of client id

* docs(identity): update confusing Identity steps
  • Loading branch information
Ben-Sheppard authored Apr 24, 2024
1 parent 99c9fb1 commit 2585421
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions docs/self-managed/setup/guides/connect-to-an-oidc-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,17 @@ For authentication, the Camunda components use the scopes `email`, `openid`, `of
global:
identity:
auth:
issuer: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
issuer: https://login.microsoftonline.com/<Tenant ID>/v2.0
# this is used for container to container communication
issuerBackendUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/v2.0
tokenUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/oauth2/v2.0/token
jwksUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/discovery/v2.0/keys
type: "MICROSOFT"
publicIssuerUrl: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
publicIssuerUrl: https://login.microsoftonline.com/<Tenant ID>/v2.0
identity:
clientId: <Client ID from Step 2>
existingSecret: <Client secret from Step 2>
audience: <Audience from Step 2>
clientId: <Client ID from Step 1>
existingSecret: <Client secret from Step 3>
audience: <Audience from Step 1>
initialClaimName: <Initial claim name if not using the default "oid">
initialClaimValue: <Initial claim value>
redirectUrl: <See table below>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,13 @@ For authentication, the Camunda components use the scopes `email`, `openid`, `of
global:
identity:
auth:
issuer: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
issuer: https://login.microsoftonline.com/<Tenant ID>/v2.0
# this is used for container to container communication
issuerBackendUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/v2.0
tokenUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/oauth2/v2.0/token
jwksUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/discovery/v2.0/keys
type: "MICROSOFT"
publicIssuerUrl: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
publicIssuerUrl: https://login.microsoftonline.com/<Tenant ID>/v2.0
operate:
clientId: <Client ID from Step 1>
audience: <Client ID from Step 1>
Expand All @@ -175,7 +175,7 @@ global:
publicApiAudience: <Audience for using Web Modeler's API. For security reasons, use a different value than for clientApiAudience>
redirectUrl: <See table below>
connectors:
clientId: <Client ID from Step 2>
clientId: <Client ID from Step 1>
existingSecret: <Client secret from Step 3>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,17 +148,17 @@ For authentication, the Camunda components use the scopes `email`, `openid`, `of
global:
identity:
auth:
issuer: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
issuer: https://login.microsoftonline.com/<Tenant ID>/v2.0
# this is used for container to container communication
issuerBackendUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/v2.0
tokenUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/oauth2/v2.0/token
jwksUrl: https://login.microsoftonline.com/<Microsoft Entra tenant id>/discovery/v2.0/keys
type: "MICROSOFT"
publicIssuerUrl: https://login.microsoftonline.com/<Client ID from Step 1>/v2.0
publicIssuerUrl: https://login.microsoftonline.com/<Tenant ID>/v2.0
identity:
clientId: <Client ID from Step 2>
existingSecret: <Client secret from Step 2>
audience: <Audience from Step 2>
clientId: <Client ID from Step 1>
existingSecret: <Client secret from Step 3>
audience: <Audience from Step 1>
initialClaimName: <Initial claim name if not using the default "oid">
initialClaimValue: <Initial claim value>
redirectUrl: <See table below>
Expand Down

0 comments on commit 2585421

Please sign in to comment.