godaddy.toml raw

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