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