role-certbot/tasks/main.yml

12 lines
211 B
YAML
Raw Permalink Normal View History

2024-10-05 13:21:15 -05:00
---
# tasks file for certbot
- name: install certbot
ansible.builtin.package:
name: certbot
state: present
2024-10-06 00:13:20 -05:00
# generate certs for new domains
- include_tasks: generate_cert.yml
loop: "{{ domains }}"