Learn how to use an LDAP provider with OCI Search with OpenSearch.
You can use an Lightweight Directory Access Protocol (LDAP) identity provider to authenticate and
authorize users for controlling access to OpenSearch clusters and OpenSearch Dashboards. Search with OpenSearch supports LDAP v1 and LDAP v2.
Prerequisites
An LDAP provider.
An existing OpenSearch cluster. If the cluster was created using the CLI or API, you
must also enable role-based access control for the cluster, with
the security mode set to enforcing.
The subnet where the cluster is located is configured with an egress rule to allow
network traffic to the subnet where the LDAP server is located.
The password for the Security plugin stored as a Vault secret, for more information, see
Managing Vaults and Managing Secrets. You need to configure a policy
to allow the OpenSearch cluster to access the Vault secret where the password is stored,
as shown in the following policy
example:
Copy
ALLOW ANY-USER TO use secret-family IN TENANCY WHERE ALL
{request.principal.type='opensearchcluster', request.resource.compartment.id = '<customer_cluster_compartment_id>', target.secret.id = '<target-secret-ocid>'}
Getting the Nat IP Address for the LDAP Server 🔗
To configure the LDAP provider for the cluster, you need the Nat IP address for the cluster
to use to connect to the LDAP server. To get this address, you need to add an external
endpoint to the cluster. You specify the IP address for the LDAP server when you add this
connection, and Search with OpenSearch returns the Nat
IP.
Open the navigation menu and click Databases. Under OpenSearch, click
Clusters.
In the Clusters list, click the name of the cluster you want to configure LDAP
for.
On the cluster details page, click More actions, and then
select Add external endpoints.
Enter the IP address for the LDAP server and click Submit.
In the Resources section, click External endpoints.
Copy the value in the Nat IP column for the external endpoint you
added. This is the address you specify in the hosts attribute of the LDAP provider
configuration for the cluster.
Configure the LDAP Provider 🔗
Use the OpenSearch Security plugin's Configuration API to configure the LDAP provider.
See Connection settings for the LDAP configuration
format.
Specify the Nat IP address copied in the previous section for the hosts attribute in the configuration.
The following example updates the configuration to support LDAP: