ansible/playbooks/postgresql.yml
2021-11-28 10:20:17 +01:00

20 lines
420 B
YAML
Executable file

#!/usr/bin/env ansible-playbook
---
# Install and configure database servers at Saclay
- hosts: bdd.adm.auro.re
vars:
update_motd:
postgresql: PostgreSQL est déployé.
roles:
- postgresql
- update_motd
# Install and configure database servers at OVH
- hosts: bdd-ovh.adm.auro.re
vars:
update_motd:
postgresql: PostgreSQL est déployé.
roles:
- postgresql
- update_motd
...