ansible/host_vars/bdd-ovh.adm.auro.re.yml
jeltz 630377edad
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Create users and databases on bdd-ovh
2021-03-10 17:21:58 +01:00

45 lines
782 B
YAML

---
postgresql:
version: 13
postgresql_hosts:
- database: etherpad
user: etherpad
net: 10.128.0.150/32
method: md5
- database: codimd
user: codimd
net: 10.128.0.150/32
method: md5
- database: synapse
user: synapse
net: 10.128.0.56/32
method: md5
- database: codimd
user: codimd
net: 127.0.0.1/32
method: md5
postgresql_databases:
- synapse
- codimd
- etherpad
postgresql_users:
- name: synapse
database: synapse
password: "{{ postgresql_synapse_passwd }}"
privs:
- ALL
- name: codimd
database: codimd
password: "{{ postgresql_codimd_passwd }}"
privs:
- ALL
- name: etherpad
database: etherpad
password: "{{ postgresql_etherpad_passwd }}"
privs:
- ALL
...