dhparams: Helper role to copy dhparams file to hosts

This commit is contained in:
Timo Makinen 2021-03-16 07:30:02 +00:00
parent 9acebe47c6
commit 2f2db828b2
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,10 @@
---
# https://tools.ietf.org/html/rfc7919#appendix-A.2
- name: copy dhparams
copy:
dest: "{{ tls_certs }}/ffdhe3072.pem"
src: ffdhe3072.pem
mode: 0644
owner: root
group: "{{ ansible_wheel }}"