|
|
|
@ -8,8 +8,8 @@ ldap_host = "{{ getenv "VAULTWARDEN_LDAP_HOST" }}"
|
|
|
|
|
{{ if (getenv "VAULTWARDEN_LDAP_SCHEME") -}} |
|
|
|
|
ldap_scheme = "{{ getenv "VAULTWARDEN_LDAP_SCHEME" }}" |
|
|
|
|
{{ end -}} |
|
|
|
|
ldap_ssl = {{ getenv "VAULTWARDEN_LDAP_SSL" "true" | conv.Bool }} |
|
|
|
|
ldap_no_tls_verify = {{ not (getenv "VAULTWARDEN_LDAP_SSL_VERIFY" "true" | conv.Bool) }} |
|
|
|
|
ldap_ssl = {{ getenv "VAULTWARDEN_LDAP_SSL" "true" | conv.ToBool }} |
|
|
|
|
ldap_no_tls_verify = {{ not (getenv "VAULTWARDEN_LDAP_SSL_VERIFY" "true" | conv.ToBool) }} |
|
|
|
|
{{ if (getenv "VAULTWARDEN_LDAP_PORT") -}} |
|
|
|
|
ldap_port = {{ getenv "VAULTWARDEN_LDAP_PORT" }} |
|
|
|
|
{{ end -}} |
|
|
|
@ -19,4 +19,4 @@ ldap_search_base_dn = "{{ getenv "VAULTWARDEN_LDAP_SEARCH_BASE_DN" }}"
|
|
|
|
|
ldap_search_filter = "{{ getenv "VAULTWARDEN_LDAP_SEARCH_FILTER" "(&(objectClass=*)(uid=*))" }}" |
|
|
|
|
ldap_mail_field = "{{ getenv "VAULTWARDEN_LDAP_MAIL_FIELD" "mail" }}" |
|
|
|
|
ldap_sync_interval_seconds = {{ getenv "VAULTWARDEN_LDAP_SYNC_INTERVAL_SECONDS" "60" }} |
|
|
|
|
ldap_sync_loop = {{ getenv "VAULTWARDEN_LDAP_SYNC_LOOP" "true" | conv.Bool }} |
|
|
|
|
ldap_sync_loop = {{ getenv "VAULTWARDEN_LDAP_SYNC_LOOP" "true" | conv.ToBool }} |
|
|
|
|