mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-28 13:15:32 +02:00
17 lines
624 B
YAML
17 lines
624 B
YAML
application_id: "ldap"
|
|
|
|
# LDAP Variables
|
|
ldaps_docker_port: 636
|
|
ldap_docker_port: 389
|
|
ldap_server_uri: "ldap://127.0.0.1:{{ ports.localhost.ldap.ldap }}"
|
|
ldap_hostname: "{{ applications[application_id].hostname }}"
|
|
ldap_bind_dn: "{{ ldap.dn.administrator.configuration }}"
|
|
ldap_bind_pw: "{{ applications[application_id].credentials.administrator_password }}"
|
|
|
|
# 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 |