ansible-infra/roles/certbot/tasks/main/install.yaml

11 lines
257 B
YAML

- name: make sure the `openssl` package is installed
ansible.builtin.apt:
name: openssl
state: present
become: true
- name: make sure the `certbot` package is installed
ansible.builtin.apt:
name: certbot
state: present
become: true