xoxys.certbot/defaults/main.yml

52 lines
1.6 KiB
YAML
Raw Permalink Normal View History

---
2021-04-17 12:20:07 +02:00
# @var certbot_version:description: Set a fix version of the certbot package to install.
# @var certbot_version: $ "_unset_"
2020-04-21 00:10:25 +02:00
# @var certbot_packages_extra:description: Extra packages to install with pip (e.g. DNS plugins).
2019-09-18 16:37:54 +02:00
certbot_packages_extra: []
certbot_virtualenv_command: /usr/bin/python3 -m venv
certbot_virtualenv: /opt/python3/certbot
2020-04-19 23:27:41 +02:00
certbot_user: root
2018-06-22 22:03:31 +02:00
certbot_work_dir: /var/lib/letsencrypt
certbot_config_dir: /etc/letsencrypt
certbot_log_dir: /var/log/letsencrypt
2018-06-22 21:57:22 +02:00
2021-06-04 08:45:03 +02:00
certbot_max_log_backups: 30
2018-06-22 21:57:22 +02:00
certbot_preferred_challenges: dns
certbot_server: https://acme-v02.api.letsencrypt.org/directory
certbot_email: mail@example.com
certbot_rsa_key_size: 4096
2020-05-22 22:21:55 +02:00
certbot_domain_groups:
- name: example
domains:
- "*.example.com"
- example.com
init: False
2018-06-23 15:29:05 +02:00
2020-04-19 23:27:41 +02:00
# @var certbot_credentials:description: >
# Specify key value parairs for your credentials (e.g. plugin credentials).
# The credentials will be saved to `{{ certbot_config_dir }}/credentials.ini and you
# could add the path to `certbot_command_arguments` if required.
# @end
certbot_credentials: []
2020-04-21 00:10:25 +02:00
# @var certbot_bin:description: Location of the certbot binary. Default is to `~/.local/.bin/certbot`.
2018-06-23 15:29:05 +02:00
certbot_command_arguments:
- "certonly"
2020-04-19 23:27:41 +02:00
2020-04-20 22:47:48 +02:00
# @var certbot_cron_enabled:description: Enable scheduling via cron.
certbot_cron_enabled: True
2018-06-23 20:43:04 +02:00
2021-04-17 12:20:07 +02:00
# @var certbot_cron_file:description: >
# Use a file under /etc/cron.d but this will only work if `certbot_user` has write permissions for this location.
2020-04-19 23:27:41 +02:00
# @end
# @var certbot_cron_file: $ "_unset_"
# @var certbot_cron_file:example: certbot-letsencrypt
2021-04-17 12:20:07 +02:00
certbot_cron_minute: "30"
certbot_cron_hour: "3"