mirror of
https://github.com/geerlingguy/ansible-role-certbot.git
synced 2025-04-19 17:01:37 +02:00
14 lines
529 B
Django/Jinja
14 lines
529 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
{% if certbot_dns_plugin == 'rfc2136' %}
|
|
# Target DNS server (IPv4 or IPv6 address, not a hostname)
|
|
dns_{{certbot_dns_plugin}}_server={{certbot_dns_target_server}}
|
|
# Target DNS port
|
|
dns_{{certbot_dns_plugin}}_port={{certbot_dns_target_server_port}}
|
|
# TSIG key name
|
|
dns_{{certbot_dns_plugin}}_name={{certbot_dns_tsig_keyname}}
|
|
# TSIG key secret
|
|
dns_{{certbot_dns_plugin}}_secret={{certbot_dns_key_secret}}
|
|
# TSIG key algorithm
|
|
dns_{{certbot_dns_plugin}}_algorithm={{certbot_dns_key_algorithm}}
|
|
{% endif %} |