Skip to content

Commit 7f285af

Browse files
authored
AUTH_LDAP_BIND_AS_AUTHENTICATING_USER defaults to false
1 parent 5ff292b commit 7f285af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configuration/ldap/ldap_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _import_group_type(group_type_name):
3131
ldap.OPT_REFERRALS: 0
3232
}
3333

34-
AUTH_LDAP_BIND_AS_AUTHENTICATING_USER = environ.get('AUTH_LDAP_BIND_AS_AUTHENTICATING_USER', 'True').lower() == 'true'
34+
AUTH_LDAP_BIND_AS_AUTHENTICATING_USER = environ.get('AUTH_LDAP_BIND_AS_AUTHENTICATING_USER', 'False').lower() == 'true'
3535

3636
# Set the DN and password for the NetBox service account if needed.
3737
if not AUTH_LDAP_BIND_AS_AUTHENTICATING_USER:

0 commit comments

Comments
 (0)