Adding route53 dns as default challenge

This commit is contained in:
Thiago Almeida
2020-09-11 15:44:17 +02:00
parent 5ac9b8da7c
commit e5f663e5b3
7 changed files with 43 additions and 11 deletions
+6
View File
@@ -7,6 +7,12 @@
update: "{{ certbot_keep_updated }}"
force: true
- name: Install Certbot route53 plugin.
package:
name:
- python3-certbot-dns-route53
state: present
- name: Set Certbot script variable.
set_fact:
certbot_script: "{{ certbot_dir }}/certbot-auto"
+9 -1
View File
@@ -1,6 +1,14 @@
---
- name: Install Certbot.
package: "name={{ certbot_package }} state=present"
package:
name: "{{ certbot_package }}"
state: present
- name: Install Certbot route53 plugin.
package:
name:
- python3-certbot-dns-route53
state: present
- name: Set Certbot script variable.
set_fact: