Mapping individual ldap user

Hello, everyone,

I’m trying to map an individual user ldap.
and I want to ask you questions

  1. when creating a mapping, is it enough to specify the user ID? Or I do need to specify the mapping parameters somehow differently?

@yalkun you can map individual users from ldap using usernames:

testRole1:
    users:
     - "test_user"

or alternatively you can extract the groups from ldap and map using backend roles:

testRole1:
   backend_roles:
     - "employees"

Hope this helps