23 lines
563 B
YAML
23 lines
563 B
YAML
---
|
|
postgres_repository_enabled: False
|
|
postgres_version: 10
|
|
postgres_repository_filename: "Postgresql-{{ postgres_version | regex_replace('\\.') }}"
|
|
postgres_user: postgres
|
|
postgres_group: postgres
|
|
|
|
# available postgresql.conf options
|
|
postgres_log_destination:
|
|
- stderr
|
|
postgres_log_directory: log
|
|
postgres_log_filename: postgresql.log
|
|
postgres_log_rotation_age: 1d
|
|
postgres_log_rotation_size: 0
|
|
|
|
postgres_connection_port: 5432
|
|
postgres_connection_addresses:
|
|
- localhost
|
|
postgres_socket_directories:
|
|
- /var/run/postgresql
|
|
|
|
postgres_password_encryption: md5
|