diff --git a/inventories/vagrant/host_vars/backend/389ds.yml b/inventories/vagrant/host_vars/backend/389ds.yml new file mode 100644 index 0000000..f6372c8 --- /dev/null +++ b/inventories/vagrant/host_vars/backend/389ds.yml @@ -0,0 +1,3 @@ +# 389ds LDAP configuration for vagrant environment +ds389_suffix: "dc=local,dc=test" +ds389_root_password: "admin" diff --git a/inventories/vagrant/hosts.yml b/inventories/vagrant/hosts.yml index 207f8de..27cf21d 100644 --- a/inventories/vagrant/hosts.yml +++ b/inventories/vagrant/hosts.yml @@ -49,6 +49,10 @@ all: hosts: backend: + ds389_servers: + hosts: + backend: + authentik_servers: hosts: backend: diff --git a/playbooks/site.yml b/playbooks/site.yml index b7af5f4..51e1004 100644 --- a/playbooks/site.yml +++ b/playbooks/site.yml @@ -23,6 +23,12 @@ roles: - digitalboard.core.keycloak +- name: Deploy 389ds LDAP service + hosts: ds389_servers + become: yes + roles: + - digitalboard.core.389ds + - name: Deploy garage service hosts: garage_servers become: yes