Skip to content

Commit

Permalink
use the right function name
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleene committed Feb 20, 2025
1 parent 019b3ea commit cddc648
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/gateway/templates/configMap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ data:
{{- if .Values.tlsPolicyMaps }}
GATEWAY_SMTP_TLS_POLICY_MAPS: {{ .Values.tlsPolicyMaps | quote }}
{{- end }}
GATEWAY_ABAC_OIDC_CLIENT_ID: {{ require "abacOidcClientID is required" .Values.abacOidcClientId | quote }}
GATEWAY_ABAC_PLATFORM_ENDPOINT: {{ require .Values.abacPlatformEndpoint "abacPlatformEndpoint is required" | quote }}
GATEWAY_ABAC_TAGGING_PDP_ENDPOINT: {{ require .Values.abacTaggingPdpEndpoint "abacTaggingPdpEndpoint is required" | quote }}
GATEWAY_ABAC_OIDC_CLIENT_ID: {{ required "abacOidcClientID is required" .Values.abacOidcClientId | quote }}
GATEWAY_ABAC_PLATFORM_ENDPOINT: {{ required .Values.abacPlatformEndpoint "abacPlatformEndpoint is required" | quote }}
GATEWAY_ABAC_TAGGING_PDP_ENDPOINT: {{ required .Values.abacTaggingPdpEndpoint "abacTaggingPdpEndpoint is required" | quote }}
GATEWAY_ABAC_TRIM_BLOCKED_RECIPIENTS: {{ .Values.abacTrimBlockedRecipients | ternary "1" "0" | quote }}
GATEWAY_ABAC_PLAINTEXT_CONNECTION: {{ .Values.abacPlaintextConnection | ternary "1" "0" | quote}}
GATEWAY_ABAC_ENCRYPT_EMAIL: {{ .Values.abacEncryptEmail | ternary "1" "0" | quote }}
Expand Down

0 comments on commit cddc648

Please sign in to comment.