When you configure the OpenStack Identity service to use LDAP servers, you can split authentication and authorization using the assignment feature. Integrating the assignment back end with LDAP allows administrators to use projects (tenant), roles, domains, and role assignments in LDAP.
Note
Using LDAP as an assignment back end is not recommended.
Note
The OpenStack Identity service does not support domain-specific assignment back ends.
Important
For OpenStack Identity assignments to access LDAP servers, you must define the destination LDAP server in the keystone.conf file. For more information, see Integrate Identity with LDAP.
Integrating assignment back ends with LDAP
Enable the assignment driver. In the [assignment] section, set the driver configuration key to keystone.assignment.backends.sql.Assignment:
1 2 3 | [assignment]
#driver = keystone.assignment.backends.sql.Assignment
driver = keystone.assignment.backends.ldap.Assignment
|
Create the organizational units (OU) in the LDAP directory, and define their corresponding location in the keystone.conf file:
1 2 3 4 5 6 | [ldap]
role_tree_dn =
role_objectclass = inetOrgPerson
project_tree_dn = ou=Groups,dc=example,dc=org
project_objectclass = groupOfNames
|
Note
These schema attributes are extensible for compatibility with various schemas. For example, this entry maps to the groupOfNames attribute in Active Directory:
project_objectclass = groupOfNames
A read-only implementation is recommended for LDAP integration. These permissions are applied to object types in the keystone.conf file:
1 2 3 4 5 6 7 8 | [ldap]
role_allow_create = False
role_allow_update = False
role_allow_delete = False
project_allow_create = False
project_allow_update = False
project_allow_delete = False
|
Restart the OpenStack Identity service:
# service keystone restart
Warning
During service restart, authentication and authorization are unavailable.
Additional LDAP integration settings.
Set these options in the /etc/keystone/keystone.conf file for a single LDAP server, or /etc/keystone/domains/keystone.DOMAIN_NAME.conf files for multiple back ends.
Use filters to control the scope of data presented through LDAP.
1 2 3 4 | [ldap]
project_filter = (member=cn=openstack-user,ou=workgroups,
dc=example,dc=org)
role_filter =
|
Warning
Filtering method
Mask account status values (include any additional attribute mappings) for compatibility with various directory services. Superfluous accounts are filtered with user_filter.
Setting attribute ignore to list of attributes stripped off on update.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [ldap]
role_id_attribute = cn
role_name_attribute = ou
role_member_attribute = roleOccupant
role_additional_attribute_mapping =
role_attribute_ignore =
project_id_attribute = cn
project_name_attribute = ou
project_member_attribute = member
project_desc_attribute = description
project_enabled_attribute = enabled
project_domain_id_attribute = businessCategory
project_additional_attribute_mapping =
project_attribute_ignore =
|
An alternative method to determine if a project is enabled or not is to check if that project is a member of the emulation group.
Use DN of the group entry to hold enabled projects when using enabled emulation.
1 2 3 | [ldap]
project_enabled_emulation = false
project_enabled_emulation_dn = false
|
Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License http://creativecommons.org/licenses/by/3.0/legalcode.