Add an option to allow plaintext connection to LDAP/AD Server (#9151)

This commit is contained in:
Nitish Tiwari
2020-03-20 07:50:51 +05:30
committed by GitHub
parent c5b87f93dd
commit ecf1566266
3 changed files with 27 additions and 4 deletions

View File

@@ -57,7 +57,13 @@ var (
},
config.HelpKV{
Key: TLSSkipVerify,
Description: `trust server TLS without verification, defaults to "on" (verify)`,
Description: `trust server TLS without verification, defaults to "off" (verify)`,
Optional: true,
Type: "on|off",
},
config.HelpKV{
Key: ServerInsecure,
Description: `allow plain text connection to AD/LDAP server, defaults to "off" (TLS)`,
Optional: true,
Type: "on|off",
},