I have a KeyCloak LDAP federation question.
Using LDAP Federation I am trying to map specific AD groups to one specific KeyCloak role.
Example
Fido belongs to the AD Group "Dogs"
(LDAP:memberOf:cn=dogs,cn=users,dc=test,dc=com)
Fluffy belongs to the AD Group "Cats"
(LDAP:memberOf:cn=cats,cn=users,dc=test,dc=com)
I can get LDAP Federation to create the "cats" and "dogs" roles but what I really want to do in keycloak is have a role called "animals" that both fluffy and fido are assigned to.
Is this possible using the role-ldap-mapper? Is there another way to do this?
Groups
instead ofRoles
? If it is somehow possible, could you please explain shortly how? – Chunk