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 Terraform Resource Usage


resource "apono_integration" "ldap-directory-integration" {
  name                     = "LDAP Group"
  type                     = "ldap-directory"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["resource-type-1", "resource-type-2"]
  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. The following are the available resource type/s you can use:

    • ldap-directory

    • ldap-directory-group

Metadata

  • 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