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