ansible-role-certbot/tasks/install-nginx-plugin.yml
2019-10-03 13:28:50 +02:00

13 lines
238 B
YAML

---
- name: Add apt repository
apt_repository:
repo: "{{ item }}"
state: present
loop: "{{ certbot_nginx_plugin_apt_repos }}"
- name: Install nginx plugin
package:
name: "{{ certbot_nginx_plugin }}"
state: present