mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
9 lines
248 B
YAML
9 lines
248 B
YAML
---
|
|
certbot_create_command: >-
|
|
{{ certbot_script }} certonly --webroot
|
|
--webroot-path {{ certbot_webroot }}
|
|
--noninteractive --agree-tos
|
|
--email {{ cert_item.email | default(certbot_admin_email) }}
|
|
-d {{ cert_item.domains | join(',') }}
|
|
|