dns/roles/docker/tasks/main.yml
Simon Marsh 2777f28e81
All checks were successful
continuous-integration/drone/push Build is passing
ca deployment
2022-06-11 19:19:27 +01:00

23 lines
490 B
YAML

---
########################################################################
# upload the certs
- copy:
src: 'certificates/{{ d }}/{{ f }}'
dest: '{{ tpath }}/certs/{{ f }}'
owner: root
group: root
mode: 0400
vars:
d: '{{ item.d }}'
f: '{{ item.d }}.{{ item.s }}'
loop:
- { d: 'burble-dn42', s: 'crt' }
- { d: 'burble-dn42', s: 'key' }
notify: update traefik
########################################################################
# end of file