Merge branch 'master' of ssh://git-ssh.notandy.de:2222/ansible/roles/postgresql

This commit is contained in:
nd 2023-06-17 22:38:48 +02:00
commit 80842c5ba2
No known key found for this signature in database
GPG key ID: 089EAC11F59D1863
4 changed files with 811 additions and 13 deletions

View file

@ -2,6 +2,9 @@ postgresql:
backup:
enable: True
keep_days: 3
listen_addresses: localhost
max_connections: 100
shared_buffers: 128MB
allowed_hosts: {}
dbs: {}
users: {}
@ -11,3 +14,10 @@ distro_pg_version_mapping:
buster: "11"
bullseye: "13"
bookworm: "15"
default_allowed_hosts:
type: 'host'
database: 'all'
user: 'all'
source_net: 'all'
auth: 'md5'