Skip to content

Commit

Permalink
Merge pull request #153 from danielloader/add-quotes-oidc-options
Browse files Browse the repository at this point in the history
fix: add quotes around oidc options
  • Loading branch information
evansims authored Aug 14, 2024
2 parents 3bdc86e + ba65535 commit dc7f103
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/openfga/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ spec:

{{- if .Values.authn.oidc.audience }}
- name: OPENFGA_AUTHN_OIDC_AUDIENCE
value: {{ .Values.authn.oidc.audience }}
value: "{{ .Values.authn.oidc.audience }}"
{{- end }}

{{- if .Values.authn.oidc.issuer }}
- name: OPENFGA_AUTHN_OIDC_ISSUER
value: {{ .Values.authn.oidc.issuer }}
value: "{{ .Values.authn.oidc.issuer }}"
{{- end }}

- name: OPENFGA_PLAYGROUND_ENABLED
Expand Down

0 comments on commit dc7f103

Please sign in to comment.