From 717eb646bd25cd0bdefde633fd8b5af7ec1f7d84 Mon Sep 17 00:00:00 2001 From: Christian Richter Date: Wed, 23 Aug 2023 09:45:36 +0200 Subject: [PATCH] fix vendoring Signed-off-by: Christian Richter --- .../libregraph/lico/bootstrap/backends/ldap/ldap.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go b/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go index 53b8e8bcb1..4d3cd379fe 100644 --- a/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go +++ b/vendor/github.com/libregraph/lico/bootstrap/backends/ldap/ldap.go @@ -107,12 +107,12 @@ func NewIdentityManager(bs bootstrap.Bootstrap) (identity.Manager, error) { identifierBackend, identifierErr := ldap.NewLDAPIdentifierBackend( config.Config, tlsConfig, - os.Getenv("OCIS_LDAP_URI"), - os.Getenv("OCIS_LDAP_BIND_DN"), - os.Getenv("LDAP_BIND_PASSWORD"), - os.Getenv("OCIS_LDAP_USER_BASE_DN"), - os.Getenv("OCIS_LDAP_SCOPE"), - os.Getenv("OCIS_LDAP_FILTER"), + os.Getenv("LDAP_URI"), + os.Getenv("LDAP_BINDDN"), + os.Getenv("LDAP_BINDPW"), + os.Getenv("LDAP_BASEDN"), + os.Getenv("LDAP_SCOPE"), + os.Getenv("LDAP_FILTER"), subMapping, attributeMapping, )