17 lines
262 B
YAML
17 lines
262 B
YAML
|
---
|
||
|
- name: Set up Servers
|
||
|
hosts: db
|
||
|
gather_facts: yes
|
||
|
vars_files:
|
||
|
- secrets.yml
|
||
|
roles:
|
||
|
- role: common
|
||
|
tags:
|
||
|
- common
|
||
|
- role: postgres
|
||
|
tags:
|
||
|
- postgres
|
||
|
- role: node_exporter
|
||
|
tags:
|
||
|
- node_exporter
|