mirror of
https://github.com/MatteZ02/infra.git
synced 2024-11-09 20:40:18 +00:00
Update
This commit is contained in:
parent
e28db8c729
commit
22c46df4df
@ -140,12 +140,16 @@
|
|||||||
type: RSA
|
type: RSA
|
||||||
size: 2048
|
size: 2048
|
||||||
regenerate: never
|
regenerate: never
|
||||||
|
tags:
|
||||||
|
- certbot
|
||||||
|
|
||||||
- name: "Installer - Certbot - Self-Signed Certificates - Create Certificate Signing Request"
|
- name: "Installer - Certbot - Self-Signed Certificates - Create Certificate Signing Request"
|
||||||
community.crypto.openssl_csr:
|
community.crypto.openssl_csr:
|
||||||
common_name: "{{ ansible_facts.fqdn }}"
|
common_name: "{{ ansible_facts.fqdn }}"
|
||||||
privatekey_path: "/root/certs/mpp/privkey.pem"
|
privatekey_path: "/root/certs/mpp/privkey.pem"
|
||||||
path: "/root/certs/mpp/csr.pem"
|
path: "/root/certs/mpp/csr.pem"
|
||||||
|
tags:
|
||||||
|
- certbot
|
||||||
|
|
||||||
- name: "Installer - Certbot - Self-Signed Certificates - Generate Certificate"
|
- name: "Installer - Certbot - Self-Signed Certificates - Generate Certificate"
|
||||||
community.crypto.x509_certificate:
|
community.crypto.x509_certificate:
|
||||||
@ -153,6 +157,16 @@
|
|||||||
privatekey_path: "/root/certs/mpp/privkey.pem"
|
privatekey_path: "/root/certs/mpp/privkey.pem"
|
||||||
csr_path: "/root/certs/mpp/csr.pem"
|
csr_path: "/root/certs/mpp/csr.pem"
|
||||||
provider: selfsigned
|
provider: selfsigned
|
||||||
|
tags:
|
||||||
|
- certbot
|
||||||
|
|
||||||
|
- name: "Installer - Certbot - Self-Signed Certificates - Copy Certificate"
|
||||||
|
copy:
|
||||||
|
src: "/root/certs/mpp/fullchain.pem"
|
||||||
|
dest: "/root/certs/mpp/chain.pem"
|
||||||
|
force: true
|
||||||
|
tags:
|
||||||
|
- certbot
|
||||||
|
|
||||||
- name: "Installer - Certbot - Auth Hook"
|
- name: "Installer - Certbot - Auth Hook"
|
||||||
copy:
|
copy:
|
||||||
|
Loading…
Reference in New Issue
Block a user