lego/providers/dns/ultradns/ultradns.toml
AntonyRohithAkash afcb2bc6d1
Add DNS provider for UltraDNS (#1806)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
2023-01-11 14:57:25 +01:00

25 lines
893 B
TOML

Name = "Ultradns"
Description = ''''''
URL = "https://neustarsecurityservices.com/dns-services"
Code = "ultradns"
Since = "v4.10.0"
Example = '''
ULTRADNS_USERNAME=username \
ULTRADNS_PASSWORD=password \
lego --email you@example.com --dns ultradns --domains my.example.org run
'''
[Configuration]
[Configuration.Credentials]
ULTRADNS_USERNAME = "API Username"
ULTRADNS_PASSWORD = "API Password"
[Configuration.Additional]
ULTRADNS_ENDPOINT = "API endpoint URL, defaults to https://api.ultradns.com/"
ULTRADNS_TTL = "The TTL of the TXT record used for the DNS challenge"
ULTRADNS_POLLING_INTERVAL = "Time between DNS propagation check"
ULTRADNS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
[Links]
API = "https://ultra-portalstatic.ultradns.com/static/docs/REST-API_User_Guide.pdf"
GoClient = "https://github.com/ultradns/ultradns-go-sdk"