2016-06-21 19:58:26 +02:00
|
|
|
---
|
2016-10-20 17:10:17 +02:00
|
|
|
- block:
|
|
|
|
- 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 }}'
|
|
|
|
notify: Restart postgresql
|
|
|
|
|
|
|
|
- name: Create the pki directory to store the postgresql key
|
|
|
|
file: dest=/etc/pki/postgresql state=directory owner=postgres group=postgres mode=0750
|
|
|
|
|
|
|
|
- name: Create a postgres accessible ssl key file if it does not exist
|
|
|
|
copy: src=/var/lib/acme/live/{{ ansible_fqdn }}/privkey dest=/etc/pki/postgresql/postgresql.key owner=postgres group=postgres mode=0400 remote_src=True
|
|
|
|
|
2016-06-21 19:58:26 +02:00
|
|
|
when: psql_enable_ssl
|
|
|
|
tags: [ 'postgresql', 'postgres', 'pg_conf' ]
|