1
0
mirror of https://github.com/go-acme/lego.git synced 2025-03-11 23:14:41 +02:00
lego/providers/dns/dyn/dyn.toml
2025-01-11 15:35:31 +01:00

27 lines
829 B
TOML

Name = "Dyn"
Description = ''''''
URL = "https://dyn.com/"
Code = "dyn"
Since = "v0.3.0"
Example = '''
DYN_CUSTOMER_NAME=xxxxxx \
DYN_USER_NAME=yyyyy \
DYN_PASSWORD=zzzz \
lego --email you@example.com --dns dyn -d '*.example.com' -d example.com run
'''
[Configuration]
[Configuration.Credentials]
DYN_CUSTOMER_NAME = "Customer name"
DYN_USER_NAME = "User name"
DYN_PASSWORD = "Password"
[Configuration.Additional]
DYN_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
DYN_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
DYN_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
DYN_HTTP_TIMEOUT = "API request timeout in seconds (Default: 10)"
[Links]
API = "https://help.dyn.com/rest/"