ansible/roles/certs/tasks/Debian.yaml
2020-05-23 16:41:09 -05:00

11 lines
268 B
YAML

---
- name: add trusted ca certificates
copy:
dest: "{{ certs_trusted_ca_path }}/{{ item.key }}.crt"
content: "{{ item.value }}"
owner: root
group: root
mode: "0644"
loop: "{{ certs_trusted_ca | dict2items }}"
notify: update-ca-certificates