ansible-role-certbot/tasks/install-with-package.yml
2020-09-11 15:44:17 +02:00

16 lines
304 B
YAML

---
- name: Install Certbot.
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:
certbot_script: "{{ certbot_package }}"