AD Group Integration
This page contains information on how to leverage Active Directory groups within Cinchy.
Last updated
This page contains information on how to leverage Active Directory groups within Cinchy.
Last updated
Table of Contents |
---|
This section defines how to manage Groups.
Cinchy Groups are containers that have Users and other Groups within them as members. They are used to provision access controls throughout the platform. Cinchy Groups enable centralized administration for access controls.
Groups are defined in the "Groups" table within the Cinchy domain. By default this table can only be managed by members of the Cinchy Administrators group. Each group has the following attributes:
Attribute | Definition |
---|
To define a new AD Group, create a new record within the Groups Table with the same name as the AD Group (using the cn attribute).
Set the Group Type to "AD Group".
To convert an existing group, update the Name attribute of the existing group record to match the AD Group (using the cn attribute).
Set the Group Type to "AD Group".
The sync operation performs the following high-level steps:
Fetches all Cinchy registered AD Groups using a Saved Query.
Retrieves the usernames of all members for each AD Group. The default attribute for username that is retrieved is "userPrincipalName", but configurable as part of the sync process.
For each AD Group, it loads the users that are both a member in AD and exist in the Cinchy Users table (matched on the Username) into the "Users" attribute of the Cinchy Groups table.
The Cinchy CLI Model must be installed in your instance of Cinchy.
An instance of the Cinchy CLI must be available to execute the sync.
A task scheduler is required to perform the sync on a regular basis (e.g. Autosys).
Create a new query within Cinchy with the below CQL to fetch all AD Groups from the Groups table. The domain & name assigned to the query will be referenced in the subsequent step.
Copy the below XML into a text editor of your choice and update the attributes listed in the table below the XML to align to your environment specific settings.
Once complete, create an entry with the config in your Data Sync Configurations table (part of the Cinchy CLI model).
If the userPrincipalName
attribute in Active Directory does not match what you expect to have as the Username in the Cinchy Users table (e.g. if the SAML token as part of your SSO integration returns a different ID), then you must replaceuserPrincipalName
in the XML config with the expected attribute.
The userPrincipalName
appears twice in the XML, once in the LDAPDataSource Columns and once in the CinchyTableTarget ColumnMappings.
Update the command parameters (described in the table below) with your environment specific settings.
Execution of this command can be scheduled at your desired frequency using your scheduler of choice.
The user account credentials provided in above CLI syncdata command must have View/Edit access to Cinchy Groups table.
If you are syncing someone with a lot of ADFS groups, the server may reject the request for the header being too large. If you are able to login as a user with a few groups in ADFS but run into an error with users with a lot of ADFS groups (regardless of if those ADFS groups are in Cinchy), you will need to make the following changes:
In your CinchySSO app settings, you will also need to increase the max size of the request, as follows:
AD Groups defined in Cinchy have their members sync-ed from AD through a batch process that leverages the .
The below CLI command (for additional information on the syncdata command) should be used to execute the sync.
Follow the instructions
XML Tag | Attribute | Content |
LDAPDataSource | ldapserver | The LDAP server url (e.g. LDAP:\\activedirectoryserver.domain.com) |
LDAPDataSource | username | The encrypted username to authenticate with the AD server (generated using the CLI's encrypt command - dotnet Cinchy.CLI.dll encrypt -t "Domain/username"). |
LDAPDataSource | password | The encrypted password to authenticate with the AD server (generated using the CLI's encrypt command - dotnet Cinchy.CLI.dll encrypt -t "password"). |
LDAPDataSource -> Filter | Domain Name | The domain of the Saved Query that retrieves AD Groups |
LDAPDataSource -> Filter | Query Name | The name of the Saved Query that retrieves AD Groups |
Options | Description |
-s, --server | Required. The full path to the Cinchy server without the protocol (e.g. cinchy.co/Cinchy). |
-u, --userid | Required. The user id to login to Cinchy. This account must have access to edit the Groups table |
-p, --password | Required. The encrypted password of the specified user (generated using the CLI's encrypt command - dotnet Cinchy.CLI.dll encrypt -t "password"). |
-m, --model | Required. The Cinchy model to use for retrieval of batch configuration information and persistence of the execution log. |
-d, --tempdirectory | Required. The path to a directory that the CLI can use for storing temporary files to support the sync (e.g. partitioned data). |
Name | The Group Name. This must be unique across all groups within the system. |
Users | The Users which are members of the group |
User Groups | The Groups which are members of the group |
Owners | Users who are able to administer memberships to the group. By default, Owners are also members of the group and this do not need to also be added into the Users category. |
Owner Groups | Groups whose members are able to administer the membership of the group. By default, members of Owner Groups are also members of the group itself, and thus do not need to also be added into the User or User Groups category. |
Group Type | This will be either "Cinchy Group" or "AD Group". "Cinchy Group": The membership is maintained directly in Cinchy. "AD Group": A sync process will be leveraged to maintain the membership and overwrite the Users. |