ansible_playbooks/roles/postgres_install/defaults/main.yml
2026-07-21 14:37:34 +03:00

10 lines
480 B
YAML
Executable file

---
postgres_install_postgresql_version: "16"
postgres_install_postgresql_listen_addresses: "localhost"
postgres_install_postgresql_port: 5432
postgres_install_postgresql_locale: "en_US.UTF-8"
postgres_install_postgresql_conf_path: "/etc/postgresql/{{ postgres_install_postgresql_version }}/main/postgresql.conf"
postgres_install_pg_hba_conf_path: "/etc/postgresql/{{ postgres_install_postgresql_version }}/main/pg_hba.conf"
postgres_install_allowed_hosts:
- "127.0.0.1/32"
...