Files
RekomenciBackend/infrastructure/iac/ansible/apps.yaml
T
ITQ 44df678c82 chore: added iac
Signed-off-by: ITQ <itq.dev@ya.ru>
2025-11-21 18:49:30 +03:00

28 lines
728 B
YAML

---
- name: Application Deployment
hosts: servers
gather_facts: true
become: true
serial: 1
roles:
- role: dokploy
when: applications.dokploy.enabled | bool
vars:
dokploy_state: "{{ applications.dokploy.state | default('present') }}"
tags: dokploy, apps
- role: coolify
when: applications.coolify.enabled | bool
vars:
coolify_state: "{{ applications.coolify.state | default('present') }}"
tags: coolify, apps
- role: artis3n.tailscale.machine
when: applications.tailscale.enabled | bool
tags: tailscale, apps
- role: borgbase.ansible_role_borgbackup
when: applications.borgbackup.enabled | bool
tags: borgbackup, apps