Mapping LDAP Service Directory Groups to Kong Roles
After starting Kong Gateway with the desired configuration, you can create new admins whose usernames match those in your LDAP directory. Those users will then be able to accept invitations to join Kong Manager and log in with their LDAP credentials.
How service directory mapping works in Kong:
- Groups are created and roles are associated with the groups.
- When users log in to Kong Manager, they get permissions based on the group(s) they belong to.
For example, if a user’s group changes in the service directory, their Kong admin account’s associated role also changes in Kong Gateway the next time they log in to Kong Manager. The mapping removes the task of manually managing access in Kong Gateway, as it makes the service directory the system of record.
- Kong Gateway installed and configured
- Kong Manager access
- A local LDAP directory
Enable LDAP authentication
Configure service directory mapping to use your LDAP directory for authentication and authorization.
Start Kong Gateway. From the shell, enter:
To enable LDAP Authentication and enforce RBAC for Kong Manager, configure Kong through with the following properties:
Kong Manager also uses the Sessions plugin in the background. This plugin (configured with ) requires a secret and is configured securely by default.
- Under all circumstances, the
secret
must be manually set to a string. - If using different domains for the Admin API and Kong Manager,
cookie_samesite
must be set tooff
. Learn more about these properties in Session Security in Kong Manager, and see .
- Under all circumstances, the
Define roles with permissions
Define roles with permissions in Kong Gateway, using the Admin API’s RBAC endpoints or using Kong Manager’s . You must manually define which Kong roles correspond to each of the service directory’s groups using either of the following:
- In Kong Manager’s directory mapping section. Find it under Teams > Groups tab.
- With the Admin API’s directory mapping endpoints.
Kong Gateway will not write to the service directory. For example, a Kong Gateway admin cannot create users or groups in the directory. You must create users and groups independently before mapping them to Kong Gateway.
To map a service directory user to a Kong admin, map the admin’s username to the name value corresponding to the attribute configured in . Create an admin account in or use the Admin API.
For instructions on how to pair the bootstrapped super admin with a directory user, see .
If you already have admins with assigned roles and want to use group mapping instead, it is necessary to first remove all of their roles. The service directory will serve as the system of record for user privileges. Assigned roles will affect a user’s privileges in addition to any roles mapped from groups.
Group-role assignment
Using service directory mapping, groups are mapped to roles. When a user logs in, they are identified with their admin username and authenticated with the matching user credentials in the service directory. The groups in the service directory are then automatically matched to the associated roles that the organization has defined.
- Example Corp maps the service directory group,
T1-Mgmt
, to the Kong role super-admin. - Example Corp maps a service directory user, named
example-user
, to a Kong admin account with the same name,example-user
. - The user,
example-user
, is assigned to the groupT1-Mgmt
in the LDAP Directory.
When example-user
logs in as an admin to Kong Manager, they will automatically have the role of super-admin as a result of the mapping.
Setting up a directory user as the first super admin is recommended by Kong.
The example shows an attribute configured with a unique identifier (UID), and the directory user you want to make the super admin has a distinguished name (DN) entry of UID=example-user
:
This user will be able to log in, but until you map a group belonging to example-user
to a role, the user will only use the directory for authentication. Once you map the super-admin role to a group that example-user
is in, then you can delete the super-admin role from the example-user
admin. The group you pick needs to be “super” in your directory, otherwise as other admins log in with a generic group, for example the “employee” group, they will also become super-admins.
Alternatives:
Start Kong with RBAC turned off, map a group to the super-admin role, and then create an admin to correspond to a user belonging to that group. Doing so ensures that the super admin’s privileges are entirely tied to the directory group, whereas bootstrapping a super admin only uses the directory for authentication.
Create all admin accounts for matching directory users and ensure that their existing groups map to appropriate roles before enforcing RBAC.