1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 09:15:11 +02:00
lego/providers/dns/yandex/yandex.toml

24 lines
710 B
TOML
Raw Normal View History

2022-09-19 11:40:45 +02:00
Name = "Yandex PDD"
Description = '''
'''
2022-09-19 11:40:45 +02:00
URL = "https://pdd.yandex.com"
2020-04-27 19:58:18 +02:00
Code = "yandex"
Since = "v3.7.0"
Example = '''
YANDEX_PDD_TOKEN=<your PDD Token> \
2024-11-08 00:55:04 +02:00
lego --email you@example.com --dns yandex -d '*.example.com' -d example.com run
2020-04-27 19:58:18 +02:00
'''
[Configuration]
[Configuration.Credentials]
YANDEX_PDD_TOKEN = "Basic authentication username"
[Configuration.Additional]
YANDEX_POLLING_INTERVAL = "Time between DNS propagation check"
YANDEX_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
YANDEX_HTTP_TIMEOUT = "API request timeout"
YANDEX_TTL = "The TTL of the TXT record used for the DNS challenge"
[Links]
2022-09-19 11:40:45 +02:00
API = "https://yandex.com/dev/domain/doc/concepts/api-dns.html"