Skip to content

Commit

Permalink
fix: envVar-identity-client-secret-not-passed (#2700)
Browse files Browse the repository at this point in the history
  • Loading branch information
hisImminence authored Dec 17, 2024
1 parent c60cf29 commit 75a1a16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ data:
- name: Identity
id: {{ printf "%s" (include "identity.authClientId" .) | default "camunda-identity" | quote }}
type: CONFIDENTIAL
secret: ${CAMUNDA_IDENTITY_CLIENT_SECRET:}
secret: ${CAMUNDA_IDENTITY_CLIENT_SECRET:${IDENTITY_CLIENT_SECRET}}
root-url: {{ include "identity.externalUrl" . | quote }}
redirect-uris:
- "/auth/login-callback"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ data:
- name: Identity
id: "camunda-identity"
type: CONFIDENTIAL
secret: ${CAMUNDA_IDENTITY_CLIENT_SECRET:}
secret: ${CAMUNDA_IDENTITY_CLIENT_SECRET:${IDENTITY_CLIENT_SECRET}}
root-url: "http://localhost:8080"
redirect-uris:
- "/auth/login-callback"
Expand Down

0 comments on commit 75a1a16

Please sign in to comment.