pki: Fix full chain certificate creation

This commit is contained in:
Timo Makinen 2022-10-06 15:54:24 +00:00
parent fdfa5c29e5
commit d130c46eda

View file

@ -72,7 +72,7 @@
- name: copy full chain certificate file - name: copy full chain certificate file
ansible.builtin.copy: ansible.builtin.copy:
dest: "{{ tls_certs }}/{{ inventory_hostname }}-fullchain.crt" dest: "{{ tls_certs }}/{{ inventory_hostname }}-fullchain.crt"
content: "{{ pki_host_fullchain }}" content: "{{ pki_host_fullchain.stdout }}"
mode: 0640 mode: 0640
owner: root owner: root
group: "{{ ansible_wheel }}" group: "{{ ansible_wheel }}"