Skip to content

Commit bf0402e

Browse files
add config for additional oauth scopes
Co-authored-by: Christer Edvartsen <[email protected]>
1 parent e86e964 commit bf0402e

File tree

6 files changed

+15
-3
lines changed

6 files changed

+15
-3
lines changed

charts/Feature.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@ values:
114114
config:
115115
type: string
116116

117+
oauth.additionalScopes:
118+
displayName: OAuth additional scopes
119+
description: List of additional scopes to use in the OAuth login flow
120+
config:
121+
type: string_array
122+
117123
staticServiceAccounts:
118124
displayName: Static nais-api service accounts
119125
description: JSON-encoded list of static service accounts

charts/templates/deployment.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ spec:
7272
value: "https://{{ .Values.host }}/oauth2/callback"
7373
- name: OAUTH_FRONTEND_URL
7474
value: "https://{{ .Values.host }}"
75+
- name: OAUTH_ADDITIONAL_SCOPES
76+
value: "{{ .Values.oauth.additionalScopes | join "," }}"
7577
- name: LISTEN_ADDRESS
7678
value: ":3000"
7779
- name: INTERNAL_LISTEN_ADDRESS

charts/values.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ oauth: # mapped in fasit
4949
issuer: "https://accounts.google.com"
5050
clientID: ""
5151
clientSecret: ""
52+
additionalScopes: []
5253

5354
slack:
5455
feedbackChannel: "console-user-feedback"

internal/auth/authn/oidc.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type OIDC struct {
1212
provider *oidc.Provider
1313
}
1414

15-
func NewOIDC(ctx context.Context, issuer, clientID, clientSecret, redirectURL string) (*OIDC, error) {
15+
func NewOIDC(ctx context.Context, issuer, clientID, clientSecret, redirectURL string, additionalScopes []string) (*OIDC, error) {
1616
provider, err := oidc.NewProvider(ctx, issuer)
1717
if err != nil {
1818
return nil, err
@@ -25,7 +25,7 @@ func NewOIDC(ctx context.Context, issuer, clientID, clientSecret, redirectURL st
2525
ClientSecret: clientSecret,
2626
Endpoint: provider.Endpoint(),
2727
RedirectURL: redirectURL,
28-
Scopes: []string{oidc.ScopeOpenID, "profile", "email"},
28+
Scopes: append([]string{oidc.ScopeOpenID, "profile", "email"}, additionalScopes...),
2929
},
3030
}, nil
3131
}

internal/cmd/api/api.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ func loadEnvFile(log logrus.FieldLogger) error {
299299
}
300300

301301
func setupAuthHandler(ctx context.Context, cfg oAuthConfig, log logrus.FieldLogger) (authn.Handler, error) {
302-
cf, err := authn.NewOIDC(ctx, cfg.Issuer, cfg.ClientID, cfg.ClientSecret, cfg.RedirectURL)
302+
cf, err := authn.NewOIDC(ctx, cfg.Issuer, cfg.ClientID, cfg.ClientSecret, cfg.RedirectURL, cfg.AdditionalScopes)
303303
if err != nil {
304304
return nil, err
305305
}

internal/cmd/api/config.go

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ type oAuthConfig struct {
8989

9090
// RedirectURL The URL that Google will redirect back to after performing authentication.
9191
RedirectURL string `env:"OAUTH_REDIRECT_URL"`
92+
93+
// AdditionalScopes is a list of additional scopes to request in the OAuth login flow.
94+
AdditionalScopes []string `env:"OAUTH_ADDITIONAL_SCOPES"`
9295
}
9396

9497
type unleashConfig struct {

0 commit comments

Comments
 (0)