forked from ISTI-ansible-roles/ansible-roles
9 lines
332 B
YAML
9 lines
332 B
YAML
---
|
|
- name: Setup ssl in the postgresql configuration
|
|
action: configfile path=/etc/postgresql/{{ psql_version }}/main/postgresql.conf key={{ item.name }} value="'{{ item.value }}'"
|
|
with_items: '{{ psql_conf_ssl_parameters }}'
|
|
when: psql_enable_ssl
|
|
notify: Restart postgresql
|
|
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|
|
|