Description
Add the ability for the sync tool to dynamically create new user groups in the Admin Console that reflect additional groups of interest (such as ACL groups) that the user belongs to in the LDAP directory.
This feature primarily exists to facilitate AEM instances that use Adobe's identity management system to manage AEM identities, but can potentially be used outside of that domain.
This update introduces a new optional configuration option in connector-ldap.yml
that specifies a query to get a list of groups of which an individual user is a direct member.
member_group_filter_format: "(member={member_dn})"
A list of naming rules, specified in a new optional configuration option in user-sync-config.yml
, governs how these additional groups are identified, and how their names should be translated for targeting on the Adobe side:
additional_groups:
- source: "ACL-(.+)"
target: "ACL-Grp-(\1)"
- source: "(.+)-ACL"
target: "ACL-Grp-(\1)"
Also introduced is the ability to automatically create user groups that do not already exist. This applies to any Adobe group targeted in the overall sync workflow - including the group mapping rules, extension hook, as well as the aforementioned "additional group" functionality.
The option to auto-create user groups is also specified in user-sync-config.yml
:
group_sync_options:
auto_create: True
NOTE: Auto-deletion is not planned at this time.