ansible-roles/pgbouncer/defaults/main.yml

18 lines
411 B
YAML
Raw Normal View History

2023-03-16 17:14:16 +01:00
---
2023-06-01 09:43:20 +02:00
pgbouncer_listen_addr:
- "127.0.0.1"
2023-03-16 17:14:16 +01:00
pgbouncer_listen_port: "6432"
2023-06-01 09:43:20 +02:00
# For PostgreSQL version < 14, use "md5"
# For PostgreSQL version >= 14, use "scram-sha-256"
pgbouncer_auth_type: "scram-sha-256"
2023-06-01 09:43:20 +02:00
# Each entry must have "name", "host" and "port" keys
2023-03-16 17:14:16 +01:00
pgbouncer_databases: []
pgbouncer_admin_users: []
pgbouncer_stats_users: []
2023-06-01 09:43:20 +02:00
# Each entry must have "name" and "hash" keys
pgbouncer_account_list: []