Skip to content

Commit

Permalink
fix: Add openshift as a dex connector type which requires a redirectU…
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisob authored Sep 1, 2020
1 parent d09bd23 commit 324a336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/dex/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func replaceListSecrets(obj []interface{}, secretValues map[string]string) []int
// https://github.com/dexidp/dex/tree/master/Documentation/connectors
func needsRedirectURI(connectorType string) bool {
switch connectorType {
case "oidc", "saml", "microsoft", "linkedin", "gitlab", "github", "bitbucket-cloud":
case "oidc", "saml", "microsoft", "linkedin", "gitlab", "github", "bitbucket-cloud", "openshift":
return true
}
return false
Expand Down

0 comments on commit 324a336

Please sign in to comment.