cleanup tls tasks
This commit is contained in:
parent
54f0e97032
commit
c59c02180d
@ -26,8 +26,6 @@ postgres_password_encryption: md5
|
|||||||
postgres_tls_enabled: False
|
postgres_tls_enabled: False
|
||||||
postgres_tls_cert_filename: "mycert.pem"
|
postgres_tls_cert_filename: "mycert.pem"
|
||||||
postgres_tls_key_filename: "mykey.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_cert_source: mycert.pem
|
||||||
postgres_tls_key_source: mykey.pem
|
postgres_tls_key_source: mykey.pem
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
become_user: root
|
become_user: root
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Copy certs and private key (file)
|
- name: Copy certs and private key
|
||||||
copy:
|
copy:
|
||||||
src: "{{ item.src }}"
|
src: "{{ item.src }}"
|
||||||
dest: "{{ item.dest }}"
|
dest: "{{ item.dest }}"
|
||||||
@ -24,18 +24,5 @@
|
|||||||
- { src: "{{ postgres_tls_cert_source }}", dest: '{{ __postgres_tls_cert_path }}', mode: '0750' }
|
- { src: "{{ postgres_tls_cert_source }}", dest: '{{ __postgres_tls_cert_path }}', mode: '0750' }
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.dest }}"
|
label: "{{ item.dest }}"
|
||||||
when: postgres_tls_source_use_files
|
|
||||||
|
|
||||||
- name: Copy certs and private key (content)
|
|
||||||
copy:
|
|
||||||
content: "{{ item.src }}"
|
|
||||||
dest: "{{ item.dest }}"
|
|
||||||
mode: "{{ item.mode }}"
|
|
||||||
with_items:
|
|
||||||
- { src: "{{ postgres_tls_key_source }}", dest: '{{ __postgres_tls_key_path }}', mode: '0600' }
|
|
||||||
- { src: "{{ postgres_tls_cert_source }}", dest: '{{ __postgres_tls_cert_path }}', mode: '0750' }
|
|
||||||
loop_control:
|
|
||||||
label: "{{ item.dest }}"
|
|
||||||
when: postgres_tls_source_use_content
|
|
||||||
become: True
|
become: True
|
||||||
become_user: "{{ postgres_user }}"
|
become_user: "{{ postgres_user }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user