You can configure your Cloud Platform website to communicate with the LDAP (Lightweight Directory Access Protocol) infrastructure on your internal network and access the directory information it contains. Use LDAP only if you do not require a web-friendly single sign-on (SSO) system (such as SimpleSAML).
Enable LDAP: Main steps
To enable communication between your LDAP infrastructure and your Cloud Platform application:
Install and enable the LDAP module
Make sure that your code repository contains a properly installed and enabled LDAP integration module for your application that matches your installed version of Drupal:
Drupal version | Module |
---|---|
Drupal 7 | Download the version 7.x module from the LDAP project page at Drupal.org. |
Current Drupal version | Download the module for the current Drupal version from the LDAP project page at Drupal.org. |
(Optional) Get EIPs for your Cloud Platform environments
Depending on how your LDAP infrastructure is configured, you may need to allowlist your Cloud Platform Production or non-Production environments or both. Since the IP address of a Cloud Platform infrastructure can change at any time, this may require one or more static IP addresses, using Elastic IP (EIP) assignments. To get EIPs assigned to your Cloud Platform environment’s Drupal infrastructure, create a Support ticket.
For more information, see Using Elastic IP addresses.
Configure SSL/TLS certificate validation
The best practice in a production environment is to use SSL and certificate validation for communication between your LDAP infrastructure and your Cloud Platform website, as described in Configuring LDAPS. Initially, however, configure your system to not require certificate validation.
Turn off SSL/TLS certificate validation in ldap.conf
Create an ldap.conf
file that includes this line:
TLS_REQCERT never
You can put this file anywhere that your application can access. The best place is in your application’s codebase, at the same level, but not in your application’s docroot. For example, you could create a directory named ldap
and put the ldap.conf
file there.
Specify the location of your ldap.conf
file with an environment variable, LDAPCONF
. For example, add a line like this to your settings.php
file:
putenv('LDAPCONF=../ldap/ldap.conf');
Test your connection to the LDAP infrastructure
Test whether your application can connect to the LDAP infrastructure. Connect to your infrastructure with SSH, and enter a command similar to the following:
openssl s_client -connect [ldapserver.address.com]:[port]
Final step - Set up secure communication
After you have confirmed that your website can connect to the LDAP infrastructure, set up secure communication with LDAPS, as described in Configuring LDAPS.