Skip to content

Commit

Permalink
Merge pull request #302 from concourse/oidc-disable-get-user-info
Browse files Browse the repository at this point in the history
add oidc diable get userinfo flag
  • Loading branch information
Rui Yang authored May 19, 2022
2 parents 5ed32a6 + 469867d commit 4b4da57
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/web-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1322,6 +1322,10 @@ spec:
- name: CONCOURSE_OIDC_DISABLE_GROUPS
value: {{ .Values.concourse.web.auth.oidc.disableGroups | quote }}
{{- end }}
{{- if .Values.concourse.web.auth.oidc.disableGetUserInfo }}
- name: CONCOURSE_OIDC_DISABLE_GET_USER_INFO
value: {{ .Values.concourse.web.auth.oidc.disableGetUserInfo | quote }}
{{- end }}
{{- end }}

{{- if .Values.concourse.web.auth.microsoft.enabled }}
Expand Down
4 changes: 4 additions & 0 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1497,6 +1497,10 @@ concourse:
##
disableGroups:

## Disable OIDC connector to query the UserInfo endpoint
##
disableGetUserInfo:

## Authentication (Microsoft)
microsoft:
enabled: false
Expand Down

0 comments on commit 4b4da57

Please sign in to comment.