boma/playbooks/site.yml
sjat 3f1d7eb128 Add core Ansible scaffold, tooling, and pre-commit guards
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-30 14:10:01 +02:00

17 lines
338 B
YAML

---
# site.yml — apply full standard state to all hosts
# Run via: make deploy PLAYBOOK=site
- name: Apply base configuration to all hosts
hosts: all
become: true
roles:
- role: base
tags: [base]
- name: Configure Docker hosts
hosts: docker_hosts
become: true
roles:
- role: docker_host
tags: [docker]