LDAP Group

LDAP (Lightweight Directory Access Protocol) is a standardized protocol for accessing and managing directory services, crucial for centralized authentication and data storage in networks.

Example Usage


ldap-directory-integration.tf
resource "apono_integration" "ldap-directory-integration" {
  name                     = "LDAP Group"
  type                     = "ldap-directory"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["ldap-directory-group"]
  metadata = {
    url = "<LDAP Server URL>"
    custom_ca_cert = "<Self signed server or CA certificate>"
    domain = "<Domain>"
    groups_scope = "<Groups Scope>"
    users_scope = "<Users Scope>"
    user_email_attribute = "<User Email Attribute>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}

Schema


  • type ldap-directory

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • ldap-directory-group

Integration Config


  • url (Required | String) LDAP Server URL

  • custom_ca_cert (Optional | String) Self signed server or CA certificate

  • domain (Required | String) Domain

  • groups_scope (Optional | String) Groups Scope

  • users_scope (Optional | String) Users Scope

  • user_email_attribute (Optional | String) User Email Attribute

Last updated

Was this helpful?