Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(identity): fix identity docs #3704

Merged
merged 2 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading