Provide better generated config defaults for ldap section.

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-09-23 04:56:02 +00:00
parent 5467c9e486
commit bffb7f89c8
2 changed files with 15 additions and 5 deletions

View File

@@ -2157,6 +2157,8 @@ pub struct LdapConfig {
/// Root of the searches.
///
/// example: "ou=users,dc=example,dc=org"
///
/// default:
#[serde(default)]
pub base_dn: String,
@@ -2170,6 +2172,8 @@ pub struct LdapConfig {
///
/// example: "cn=ldap-reader,dc=example,dc=org" or
/// "cn={username},ou=users,dc=example,dc=org"
///
/// default: ""
#[serde(default)]
pub bind_dn: Option<String>,
@@ -2177,6 +2181,8 @@ pub struct LdapConfig {
/// `bind_dn`.
///
/// The server must be able to access the file, and it must not be empty.
///
/// default: ""
#[serde(default)]
pub bind_password_file: Option<PathBuf>,
@@ -2220,6 +2226,8 @@ pub struct LdapConfig {
/// Defaults to `base_dn` if empty.
///
/// example: "ou=admins,dc=example,dc=org"
///
/// default:
#[serde(default)]
pub admin_base_dn: String,
@@ -2232,6 +2240,8 @@ pub struct LdapConfig {
/// entered username for more complex filters.
///
/// example: "(objectClass=tuwunelAdmin)" or "(uid={username})"
///
/// default:
#[serde(default)]
pub admin_filter: String,
}