LLDAP/LLDAP.yml
2025-06-08 23:50:12 -04:00

14 lines
478 B
YAML

- name: LLDAP
hosts: docker1.exnetwork.org
tasks:
- name: Starting LLDAP
community.docker.docker_compose_v2:
project_src: "./LLDAP"
docker_host: "tcp://{{ ansible_host }}:2376"
tls: true
tls_hostname: "{{ ansible_host }}"
validate_certs: true
client_cert: "{{ lookup('env','TLS_CERT') }}"
client_key: "{{ lookup('env','TLS_KEY') }}"
ca_path: "{{ lookup('env','CA_CERT') }}"
state: present