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