ultradns.toml 967 B

12345678910111213141516171819202122232425
  1. Name = "Ultradns"
  2. Description = ''''''
  3. URL = "https://vercara.com/authoritative-dns"
  4. Code = "ultradns"
  5. Since = "v4.10.0"
  6. Example = '''
  7. ULTRADNS_USERNAME=username \
  8. ULTRADNS_PASSWORD=password \
  9. lego --email you@example.com --dns ultradns -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. ULTRADNS_USERNAME = "API Username"
  14. ULTRADNS_PASSWORD = "API Password"
  15. [Configuration.Additional]
  16. ULTRADNS_ENDPOINT = "API endpoint URL, defaults to https://api.ultradns.com/"
  17. ULTRADNS_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  18. ULTRADNS_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 4)"
  19. ULTRADNS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 120)"
  20. [Links]
  21. API = "https://ultra-portalstatic.ultradns.com/static/docs/REST-API_User_Guide.pdf"
  22. GoClient = "https://github.com/ultradns/ultradns-go-sdk"