You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: auth/auth.go
+1-8Lines changed: 1 addition & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,6 @@ type KeycloakRealmInfo struct {
26
26
RealmIdstring// RealmId is the realm name that is passed to services via env vars
27
27
AuthServerInternalUrlstring// AuthServerInternalUrl should point to keycloak auth server on internal (not public) network, e.g. http://keycloak:8080/auth; used for contacting keycloak for realm certificate for JWT
28
28
AuthServerPublicUrlstring// AuthServerPublicUrl should point to keycloak auth server on public (not internal) network, e.g. http://localhost:28080/auth; used to validate issuer field in JWT
29
-
tokenIssuerstring
30
29
}
31
30
32
31
func (i*KeycloakRealmInfo) validate() error {
@@ -41,7 +40,7 @@ func (i *KeycloakRealmInfo) validate() error {
41
40
errs=append(errs, fmt.Errorf("couldn't parse auth server internal url: %w", err))
0 commit comments