autodns.toml 1.0 KB

1234567891011121314151617181920212223242526
  1. Name = "Autodns"
  2. Description = ''''''
  3. URL = "https://www.internetx.com/domains/autodns/"
  4. Code = "autodns"
  5. Since = "v3.2.0"
  6. Example = '''
  7. AUTODNS_API_USER=username \
  8. AUTODNS_API_PASSWORD=supersecretpassword \
  9. lego --email you@example.com --dns autodns -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. AUTODNS_API_USER = "Username"
  14. AUTODNS_API_PASSWORD = "User Password"
  15. [Configuration.Additional]
  16. AUTODNS_ENDPOINT = "API endpoint URL, defaults to https://api.autodns.com/v1/"
  17. AUTODNS_CONTEXT = "API context (4 for production, 1 for testing. Defaults to 4)"
  18. AUTODNS_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 600)"
  19. AUTODNS_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  20. AUTODNS_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 120)"
  21. AUTODNS_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  22. [Links]
  23. API = "https://help.internetx.com/display/APIJSONEN"