Files
tildes/ansible/roles/postgresql/defaults/main.yml
T
Deimos 4cc100ab02 Switch to Debian 10 and Ansible
This changes the site to run on Debian 10 instead of Ubuntu 16.04. It
also fully converts the previous Salt setup to use Ansible instead.

Most of this was a relatively straightforward conversion, and it should
be very close to equivalent. One notable difference is that I removed
the setup for the "monitoring" server, since I wasn't confident that the
way of setting up self-hosted Sentry and Grafana was working any more.
I'll look to re-add that at some point, but it's not urgent.
2021-06-25 00:08:58 -06:00

13 lines
350 B
YAML

---
postgresql_version: 12
# Users of this role can define postgresql_settings, which will be merged with
# this base _postgresql_settings
_postgresql_settings:
lock_timeout: 5000
statement_timeout: 5000
idle_in_transaction_session_timeout: 600000
timezone: "'UTC'"
shared_preload_libraries: "'pg_stat_statements'"
postgresql_settings: {}