ansible-personal/web.yml
Alan Orth cef1655c40
web.yml: Include Debian vars explicitly
No need to include using variable interpolation as I'm only supporting
Debian familiy OSes right now anyways.
2017-11-05 01:05:23 +02:00

19 lines
261 B
YAML

---
# file: web.yml
- name: Configure web servers
hosts: web
remote_user: provisioning
become: yes
roles:
- common
- mariadb
- nginx
- php-fpm
- munin
vars_files:
- vars/ipsets.yml
- vars/Debian.yml
# vim: set sw=2 ts=2: