Create users and databases on bdd-ovh
This commit is contained in:
parent
b3fa8a455d
commit
630377edad
1 changed files with 22 additions and 0 deletions
|
@ -19,4 +19,26 @@ postgresql_hosts:
|
||||||
user: codimd
|
user: codimd
|
||||||
net: 127.0.0.1/32
|
net: 127.0.0.1/32
|
||||||
method: md5
|
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
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in a new issue