31 lines
819 B
YAML
31 lines
819 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
|
|
|
|
postgres_tls_enabled: False
|
|
postgres_tls_cert_filename: "mycert.pem"
|
|
postgres_tls_key_filename: "mykey.pem"
|
|
postgres_tls_source_use_content: False
|
|
postgres_tls_source_use_files: True
|
|
postgres_tls_cert_source: mycert.pem
|
|
postgres_tls_key_source: mykey.pem
|