13 lines
234 B
YAML
13 lines
234 B
YAML
|
|
---
|
||
|
|
- name: Deploy PostgreSQL and Postgres Exporter on App2
|
||
|
|
hosts: 192.168.0.111
|
||
|
|
become: yes
|
||
|
|
gather_facts: yes
|
||
|
|
|
||
|
|
roles:
|
||
|
|
- role: postgresql
|
||
|
|
tags: postgresql
|
||
|
|
|
||
|
|
- role: postgres_exporter
|
||
|
|
tags: postgres_exporter
|