forked from ccchb/ansible
5 lines
222 B
YAML
5 lines
222 B
YAML
|
---
|
||
|
- name: "Obtain certificate for {{ item.item | join(',') }}"
|
||
|
command: "certbot certonly --agree-tos -m {{ certbot_admin_email | quote }} -d {{ item.item | join(',') }} --webroot -w {{ certbot_webroot | quote }}"
|
||
|
...
|