18 lines
509 B
YAML
18 lines
509 B
YAML
---
|
|
- tags: ["certbot", "certbot-cert"]
|
|
name: obtain http-01 challenge certificates
|
|
loop: "{{ certbot__certificate_domains }}"
|
|
ansible.builtin.include_tasks:
|
|
file: main/http_01_cert.yaml
|
|
|
|
- tags: ["certbot", "certbot-cert"]
|
|
name: validate certs config
|
|
loop: "{{ certbot__certs }}"
|
|
ansible.builtin.include_tasks:
|
|
file: main/validate_cert.yaml
|
|
|
|
- tags: ["certbot", "certbot-cert"]
|
|
name: obtain certs
|
|
loop: "{{ certbot__certs }}"
|
|
ansible.builtin.include_tasks:
|
|
file: main/cert.yaml
|