summaryrefslogtreecommitdiff
path: root/internal/configuration/schema/const.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2023-02-08 13:35:57 +1100
committerGitHub <noreply@github.com>2023-02-08 13:35:57 +1100
commit2e6d17ba8a2295784f081d3bfc2513bc3ad321ba (patch)
treec860112a9183b29693af15b2775eedfe11ab7dbf /internal/configuration/schema/const.go
parentba89200c1978d9b5429bfaa483f68c1c51b7bc3d (diff)
feat(configuration): rfc2307bis implementation (#4900)
This adds configuration defaults for RFC2307bis LDAP implementations such as OpenLDAP with the RFC2307bis LDIF which should service most user needs.
Diffstat (limited to 'internal/configuration/schema/const.go')
-rw-r--r--internal/configuration/schema/const.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/configuration/schema/const.go b/internal/configuration/schema/const.go
index 726f23e01..6f0ef781f 100644
--- a/internal/configuration/schema/const.go
+++ b/internal/configuration/schema/const.go
@@ -65,6 +65,9 @@ const (
// LDAPImplementationActiveDirectory is the string for the Active Directory LDAP implementation.
LDAPImplementationActiveDirectory = "activedirectory"
+ // LDAPImplementationRFC2307bis is the string for the RFC2307bis LDAP implementation.
+ LDAPImplementationRFC2307bis = "rfc2307bis"
+
// LDAPImplementationFreeIPA is the string for the FreeIPA LDAP implementation.
LDAPImplementationFreeIPA = "freeipa"