Skip to content

Commit

Permalink
fix: client-secret only present when string literal provided for oidc
Browse files Browse the repository at this point in the history
  • Loading branch information
hamza-m-masood committed Jan 7, 2025
1 parent 31ad5ae commit 96b831e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charts/camunda-platform-8.5/templates/identity/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ data:
{{- if (tpl ( include "identity.authClientSecret" . ) .)}}
client-id: {{ include "identity.authClientId" . | quote }}
{{- end }}
{{- if and (.Values.global.identity.auth.identity.existingSecret) (eq (typeOf .Values.global.identity.auth.identity.existingSecret) "string") }}
client-secret: {{ include "identity.authClientSecret" . | quote }}
{{- end }}
Expand Down

0 comments on commit 96b831e

Please sign in to comment.