21 lines
327 B
YAML
21 lines
327 B
YAML
---
|
|
#- import_playbook: httpd.yml
|
|
|
|
- name: Install php and icinga2 web
|
|
hosts: monitor
|
|
become: yes
|
|
gather_facts: yes
|
|
vars_files:
|
|
- group_vars/db/vault.yml # This is encrypted
|
|
|
|
roles:
|
|
- httpd_with_php
|
|
- mariadb
|
|
- icinga2
|
|
- icingaweb2
|
|
|
|
tasks:
|
|
- debug:
|
|
msg: "Finished configuring DNS"
|
|
|