autodns.toml raw

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