Compare commits

..

2 Commits

Author SHA1 Message Date
7dedf3f7e5 feat(oidc-test): request scope "profile" 2025-01-10 15:28:17 +01:00
0ea5fd9141 feat(hydra-ldap): list fetched LDAP attributes and their matching claims
Gives a hint for people wanting to modify this parameter
2025-01-10 15:27:38 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@ configMapGenerator:
- WERTHER_LDAP_ENDPOINTS="ldap.test.fr:636" - WERTHER_LDAP_ENDPOINTS="ldap.test.fr:636"
- WERTHER_LDAP_IS_TLS=true - WERTHER_LDAP_IS_TLS=true
- WERTHER_LDAP_BASEDN="o=test,c=fr" - WERTHER_LDAP_BASEDN="o=test,c=fr"
- WERTHER_LDAP_ATTR_CLAIMS="name:name,sn:family_name,givenName:given_name,mail:email"
- WERTHER_LDAP_ROLE_BASEDN="ou=groups,o=test,c=fr" - WERTHER_LDAP_ROLE_BASEDN="ou=groups,o=test,c=fr"
- WERTHER_LDAP_CONNECTION_TIMEOUT="10s" - WERTHER_LDAP_CONNECTION_TIMEOUT="10s"

View File

@ -17,4 +17,5 @@ configMapGenerator:
- OIDC_REDIRECT_URL=https://example.net/oauth2/callback - OIDC_REDIRECT_URL=https://example.net/oauth2/callback
- OIDC_POST_LOGOUT_REDIRECT_URL=https://example.net - OIDC_POST_LOGOUT_REDIRECT_URL=https://example.net
- OIDC_SKIP_ISSUER_VERIFICATION="true" - OIDC_SKIP_ISSUER_VERIFICATION="true"
- OIDC_INSECURE_SKIP_VERIFY="true" - OIDC_INSECURE_SKIP_VERIFY="true"
- OIDC_SCOPES="openid profile"