mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-18 06:24:25 +02:00
17 lines
697 B
YAML
17 lines
697 B
YAML
application_id: "svc-db-openldap"
|
|
|
|
# LDAP Variables
|
|
ldaps_docker_port: 636
|
|
ldap_docker_port: 389
|
|
ldap_server_uri: "ldap://127.0.0.1:{{ ports.localhost.ldap['svc-db-openldap'] }}"
|
|
ldap_hostname: "{{ applications | get_app_conf(application_id, 'hostname', True) }}"
|
|
ldap_bind_dn: "{{ ldap.dn.administrator.configuration }}"
|
|
ldap_bind_pw: "{{ applications | get_app_conf(application_id, 'credentials.administrator_password', True) }}"
|
|
|
|
# LDIF Variables
|
|
ldif_host_path: "{{docker_compose.directories.volumes}}ldif/"
|
|
ldif_docker_path: "/tmp/ldif/"
|
|
ldif_types:
|
|
- configuration
|
|
- data
|
|
- schema # Don't know if this is still needed, it's now setup via tasks |