ansible/roles/certs/tasks/Debian.yaml

11 lines
268 B
YAML
Raw Normal View History

2020-05-23 21:41:09 +00:00
---
- 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