Connecting LDAP external directory services to PE
Puppet Enterprise connects to external Lightweight Directory Access Protocol (LDAP) directory services through its role-based access control (RBAC) service. Because PE integrates with cloud LDAP service providers such as Okta, you can use existing users and user groups that have been set up in your external directory service.
Specifically, you can:
- Authenticate external directory users.
- Authorize access of external directory users based on RBAC permissions.
- Store and retrieve the groups and group membership information
that has been set up in your external directory.Note: Puppet stores local accounts and directory service integration credentials securely. Local account passwords are hashed using SHA-256 multiple times, along with a 32-bit salt. To update the algorithm to argon2id (only for non-FIPS enabled systems) or to configure password algorithm parameters, refer to Configure the password algorithm. Directory service lookup credentials configured for directory lookup purposes are encrypted using AES-128. Puppet does not store the directory credentials used for authenticating to Puppet. These are different from the directory service lookup credentials.
PE supports OpenLDAP and Active Directory. If you have predefined groups in OpenLDAP or Active Directory, you can import these groups into the console and assign user roles to them. Users in an imported group inherit the permissions specified in assigned user roles. If new users are added to the group in the external directory, they also inherit the permissions of the role to which that group belongs.
Connect to an external directory service
PE connects to the external directory service when a user logs in or when groups are imported. The supported directory services are OpenLDAP and Active Directory.
External directory settings
The table below provides examples of the settings used to connect to an Active Directory service and an OpenLDAP service to PE. Each setting is explained in more detail below the table.
Display name | System name (for RBAC API) | Example Active Directory settings | Example OpenLDAP settings |
---|---|---|---|
Directory name | display_name |
My Active Directory | My Open LDAP Directory |
Login help (optional) | help-link |
https://myweb.com/ldaploginhelp |
https://myweb.com/ldaploginhelp |
Hostname | hostname |
myhost.delivery.exampleservice.net
|
myhost.delivery.exampleservice.net
|
Port | port |
389 (or 636 for LDAPS) |
389 (or 636 for LDAPS) |
Lookup user (optional) | login |
cn=queryuser,cn=Users,dc=puppetlabs,dc=com
|
cn=admin,dc=delivery,dc=puppetlabs,dc=net
|
Lookup password (required if the lookup user is specified) | password |
The lookup user's password. | The lookup user's password. |
Connection timeout (seconds) | connect_timeout |
10
|
10
|
Connect using: |
ssl , start_tls
|
SSL
|
StartTLS |
Validate the hostname? | ssl_hostname_validation |
Default is yes
|
Default is yes
|
Allow wildcards in SSL certificate? | ssl_wildcard_validation |
Default is no
|
Default is no
|
Base distinguished name | base_dn |
dc=puppetlabs,dc=com
|
dc=puppetlabs,dc=com
|
User login attribute | user_lookup_attr |
sAMAccountName |
cn
|
User email address | user_email_attr |
mail
|
mail
|
User full name | user_display_name_attr |
displayName |
displayName
|
User relative distinguished name (optional) | user_rdn |
cn=users
|
ou=users
|
Group object class | group_object_class |
group
|
groupOfUniqueNames
|
Group membership field | group_member_attr |
member
|
uniqueMember
|
Group name attribute | group_name_attr |
name
|
displayName
|
Group lookup attribute | group_lookup_attr |
cn
|
cn
|
Group relative distinguished name (optional) | group_rdn |
cn=groups
|
ou=groups
|
Turn off LDAP_MATCHING_RULE_IN_CHAIN? | disable_ldap_matching_rule_in_chain |
Default is no
|
Default is no
|
Search nested groups? | search_nested_groups |
Default is no
|
Default is no
|
Explanation of external directory settings
- Directory name
- The name that you provide here is used to refer to the external directory service anywhere it is used in the PE console. For example, when you view a remote user in the console, the name that you provide in this field is listed in the console as the source for that user. Set any name of your choice.
- Login help (optional)
- If you supply a URL here, a "Need help logging in?" link is displayed on the login screen. The href attribute of this link is set to the URL that you provide.
- Hostname
- The FQDN of the directory service to which you are connecting.
- Port
- The port that PE uses to access the directory service. The port is generally 389, unless you choose to connect using SSL, in which case it is generally 636.
- Lookup user (optional)
- The distinguished name (DN) of the directory service user account that PE uses to query information about users and groups in the directory server. If a username is supplied, this user must have read access for all directory entries that are to be used in the console. We recommend that this user is restricted to read-only access to the directory service.
- Lookup password (optional)
- The lookup user's password.
- Connection timeout (seconds)
- The number of seconds that PE attempts to connect to the directory server before timing out. Ten seconds is fine in the majority of cases. If you are experiencing timeout errors, make sure the directory service is up and reachable, and then increase the timeout if necessary.
- Connect using
- Select the security protocol you want to use to connect to the external directory.
- Validate the hostname?
- Select Yes to verify that the Directory Services hostname used to connect to the LDAP server matches the hostname on the SSL certificate. This option is not available when you choose to connect to the external directory using plain text.
- Allow wildcards in SLL certificate?
- Select Yes to allow a connection to a Directory Services server with a SSL certificates that use a wildcard (*) specification. This option is not available when you choose to connect to the external directory using plain text.
- Base distinguished name
- When PE constructs queries to your external
directory (for example to look up user groups or users), the queries consist of
the relative distinguished name (RDN) (optional) + the base distinguished name
(DN), and are then filtered by lookup/login attributes. For example, if PE wants to authenticate a user named Bob who has
the RDN
ou=bob,ou=users
, it sends a query in which the RDN is concatenated with the DN specified in this field (for example,dc=puppetlabs,dc=com
). This gives a search base ofou=bob,ou=users,dc=puppetlabs,dc=com
. - User login attribute
- This is the directory attribute that the user uses to log in to PE. For example, if you specify
sAMAccountName
as the user login attribute, Harold logs in with the username "harold11" becausesAMAccountName=harold11
in the example directory service entry provided above. - User email address
- The directory attribute to use when displaying the user's email address in PE.
- User full name
- The directory attribute to use when displaying the user's full name in PE.
- User relative distinguished name (optional)
- The user RDN that you set here is concatenated with the base DN to form the
search base when looking up a user. For example, if you specify
ou=users
for the user RDN, and your base DN setting isou=Puppet,dc=example,dc=com
, PE finds users that haveou=users,ou=Puppet,dc=example,dc=com
in their DN. - Group object class
- The name of an object class that all groups have.
- Group membership field
- Tells PE how to find which users belong to which groups. This is the name of the attribute in the external directory groups that indicates who the group members are.
- Group name attribute
- The attribute that stores the display name for groups. This is used for display purposes only.
- Group lookup attribute
- The value used to import groups into PE. Given the
example directory service entry provided above, the group lookup attribute would
be
cn
. When specifying the Inspectors group in the console to import it, provide the nameinspectors
. - Group relative distinguished name (optional)
- The group RDN that you set here is concatenated with the base DN to form the
search base when looking up a group. For example, if you specify
ou=groups
for the group RDN, and your base DN setting isou=Puppet,dc=example,dc=com
, PE finds groups that haveou=groups,ou=Puppet,dc=example,dc=com
in their DN. - Turn off LDAP_MATCHING_RULE_IN_CHAIN?
- Select Yes to turn off the LDAP matching rule that looks up the chain of ancestry for an object until it finds a match. For organizations with a large number of group memberships, matching rule in chain can slow performance.
- Search nested groups?
- Select Yes to search for groups that are members of an external directory group. For organizations with a large number of nested group memberships, searching nested groups can slow performance.
Verify directory server certificates
To ensure that RBAC isn't being subjected to a Man-in-the Middle (MITM) attack, verify the directory server's certificate.
When you select SSL or
StartTLS as the security protocol to use for communications between PE and your
directory server, the connection to the directory is encrypted. To ensure that the
directory service is properly identified, configure the ds-trust-chain
to point to a
copy of the public key for the directory service.
The RBAC service verifies directory server certificates using a trust store file, in Java Key Store (JKS), PEM, or PKCS12 format, that contains the chain of trust for the directory server's certificate. This file needs to exist on disk in a location that is readable by the user running the RBAC service.
To turn on verification:
- In the console, click Node groups.
- Open the PE Infrastructure node group and select the PE Console node group.
- Click Classes. Locate the puppet_enterprise::profile::console class.
- In the Parameter field, select rbac_ds_trust_chain.
- In the Value field, set the absolute path to the trust store file.
- Click Add parameter, and commit changes.
- To make the change take effect, run Puppet. Running Puppet restarts pe-console-services.
After this value is set, the directory server's certificate is verified whenever RBAC is configured to connect to the directory server using SSL or StartTLS.
Enable custom password policies through LDAP
Password policies are not configurable in PE. However, if your organization requires more complex password policies than the default, you can allow LDAP to manage custom password policies by delegating administrative privileges to LDAP and then revoking the admin user in the console.
Revoke the admin user:
- In the console, on the Access control page, click the Users tab.
- Select Administrator.
- On the User details page, click Revoke user access.