When integrating a user directory via LDAP we may need to assign users to a specific team.
Since LDAP directories usually do not have the entity of the team, their assignment is done according to a group assigned to those users.
Athento allows you to link LDAP users to computers based on the group assigned to them.
To do this, you have to do the following:
- Go to the advanced administration of the LDAP server in Athento.
- Go to the "Team mapping" attribute
- This attribute is a list in JSON format that contains as many LDAP group to team associations as necessary. Each association is a JSON dictionary containing three attributes.
- attribute: This is the attribute of the LDAP user in which we will look for the pattern. Usually "groupMembership".
- pattern: This is a regular expression on which the group name should be matched.
- team: This is the internal name of the team to which the user with the group for which the regular expression matches must be associated.
Example of configuration of the attribute "Team mapping".
[{"attribute": "groupMembership", "pattern": "^.*_accounting_.*$", "team": "Accounting"},]
Comments
0 comments
Please sign in to leave a comment.