postgresql/templates/15-postgresql.conf.j2

8 lines
178 B
Plaintext
Raw Normal View History

2023-02-07 23:13:12 +00:00
{% for key, value in postgresql_combined_parameters.items() %}
{{ key }} = '{{ value }}'
{% endfor %}
{% if postgresql_ssl | bool %}
include = 'postgresql.ssl.conf'
{% endif %}