godaddy.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. Name = "Go Daddy"
  2. Description = ''''''
  3. URL = "https://godaddy.com"
  4. Code = "godaddy"
  5. Since = "v0.5.0"
  6. Example = '''
  7. GODADDY_API_KEY=xxxxxxxx \
  8. GODADDY_API_SECRET=yyyyyyyy \
  9. lego --email you@example.com --dns godaddy -d '*.example.com' -d example.com run
  10. '''
  11. Additional = '''
  12. GoDaddy has recently (2024-04) updated the account requirements to access parts of their production Domains API:
  13. - Availability API: Limited to accounts with 50 or more domains.
  14. - Management and DNS APIs: Limited to accounts with 10 or more domains and/or an active Discount Domain Club plan.
  15. https://community.letsencrypt.org/t/getting-unauthorized-url-error-while-trying-to-get-cert-for-subdomains/217329/12
  16. '''
  17. [Configuration]
  18. [Configuration.Credentials]
  19. GODADDY_API_KEY = "API key"
  20. GODADDY_API_SECRET = "API secret"
  21. [Configuration.Additional]
  22. GODADDY_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  23. GODADDY_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 120)"
  24. GODADDY_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 600)"
  25. GODADDY_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  26. [Links]
  27. API = "https://developer.godaddy.com/doc/endpoint/domains"