postgresql: variables in dict

This commit is contained in:
Alexandre Iooss 2021-11-28 10:45:21 +01:00
parent f0b8075ca6
commit 4bd431f9c3
5 changed files with 121 additions and 123 deletions

View file

@ -1,2 +0,0 @@
---
postgresql_databases: true

View file

@ -5,7 +5,7 @@
vars: vars:
postgresql: postgresql:
version: 13 version: 13
postgresql_hosts: hosts:
- database: nextcloud - database: nextcloud
user: nextcloud user: nextcloud
net: 10.128.0.58/32 net: 10.128.0.58/32
@ -30,14 +30,14 @@
user: grafana user: grafana
net: 10.128.0.98/32 net: 10.128.0.98/32
method: md5 method: md5
postgresql_databases: databases:
- nextcloud - nextcloud
- gitea - gitea
- wikijs - wikijs
- drone - drone
- netbox - netbox
- grafana - grafana
postgresql_users: users:
- name: nextcloud - name: nextcloud
database: nextcloud database: nextcloud
password: "{{ vault_postgresql_nextcloud_passwd }}" password: "{{ vault_postgresql_nextcloud_passwd }}"
@ -79,7 +79,7 @@
vars: vars:
postgresql: postgresql:
version: 13 version: 13
postgresql_hosts: hosts:
- database: etherpad - database: etherpad
user: etherpad user: etherpad
net: 10.128.0.150/32 net: 10.128.0.150/32
@ -100,13 +100,13 @@
user: cas user: cas
net: 10.128.0.150/32 net: 10.128.0.150/32
method: md5 method: md5
postgresql_databases: databases:
- synapse - synapse
- codimd - codimd
- etherpad - etherpad
- kanboard - kanboard
- cas - cas
postgresql_users: users:
- name: synapse - name: synapse
database: synapse database: synapse
password: "{{ vault_postgresql_synapse_passwd }}" password: "{{ vault_postgresql_synapse_passwd }}"

View file

@ -42,7 +42,7 @@ consistency:
- repository - repository
- archives - archives
{% if postgresql_databases is defined %} {% if borg_postgresql_databases is defined %}
hooks: hooks:
postgresql_databases: postgresql_databases:
- name: all - name: all

View file

@ -55,7 +55,7 @@
lc_collate: en_US.UTF-8 lc_collate: en_US.UTF-8
lc_ctype: en_US.UTF-8 lc_ctype: en_US.UTF-8
template: template0 template: template0
loop: "{{ postgresql_databases }}" loop: "{{ postgresql.databases }}"
- name: Create users - name: Create users
become: true become: true
@ -65,7 +65,7 @@
name: "{{ item.name }}" name: "{{ item.name }}"
password: "{{ item.password }}" password: "{{ item.password }}"
no_log: true no_log: true
loop: "{{ postgresql_users }}" loop: "{{ postgresql.users }}"
- name: Grant privileges to users - name: Grant privileges to users
become: true become: true
@ -77,5 +77,5 @@
privs: "{{ item.privs | join(',') }}" privs: "{{ item.privs | join(',') }}"
obj: "{{ item.database }}" obj: "{{ item.database }}"
no_log: true no_log: true
loop: "{{ postgresql_users }}" loop: "{{ postgresql.users }}"
... ...

View file

@ -2,6 +2,6 @@
# TYPE DATABASE USER ADDRESS METHOD # TYPE DATABASE USER ADDRESS METHOD
local all postgres peer map=map_local local all postgres peer map=map_local
{% for host in postgresql_hosts %} {% for host in postgresql.hosts %}
host "{{ host.database }}" "{{ host.user }}" {{ host.net }} {{ host.method }} host "{{ host.database }}" "{{ host.user }}" {{ host.net }} {{ host.method }}
{% endfor %} {% endfor %}