-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LDAP: add claims based on groups #432
Comments
Would it make sense to allow configurable filters to whitelist/blacklist which groups are embedded? Something that came up recently in an LDAP discussion was that a lot of the LDAP groups are just noise in some contexts, and aren't always desirable to make available to other systems. |
@philips RFC2307 and RFC2307(bis) is indeed the way to go. I have experience with the old school way of RFC2307 but also have access to RFC2307(bis) based directories. @sym3tri filtering should be easy to add. Now, what infrastructure do I have available in dex to add claims to the JWT at the Identity-step? The returned oidc.Identity type contains very little information. |
There are a couple of problems when adding LDAP groups as a claim in the token.
|
This has been brought up a few times internally. While a really big token is ugly, users should be working with these programmatically. For transports that are sensitive to things this size, if the JWT holds information you don't need don't use it in those contexts. e.g. for a cookie, verify the JWT from dex, pull out the relevant groups and sign a smaller JWT yourself (or do caching, or store it, etc.). If we don't expect global filters to be enough, perhaps we could add scopes to allow the client to filter groups as well?
Good point, the groups should update when a refresh token is redeemed. This would probably only work with an LDAP connector that's using a service account. |
It would be nice to put a groups claim into the users identity. The most obvious place to start would be letting someone who is using an LDAP server with an RFC2307(bis) schema to be able to take their posixGroups list and put it into a claim as a JSON list.
cc @fnordahl
The text was updated successfully, but these errors were encountered: