mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
13 lines
238 B
YAML
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
|