Create users and databases on bdd-ovh
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
jeltz 2021-03-10 17:21:58 +01:00
parent b3fa8a455d
commit 630377edad

View file

@ -19,4 +19,26 @@ postgresql_hosts:
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
...