LLDAP/LLDAP.yml
2025-06-09 00:01:58 -04:00

16 lines
528 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
delegate_to: localhost
run_once: true