exoscale.toml raw

   1  Name = "Exoscale"
   2  Description = ''''''
   3  URL = "https://www.exoscale.com/"
   4  Code = "exoscale"
   5  Since = "v0.4.0"
   6  
   7  Example = '''
   8  EXOSCALE_API_KEY=abcdefghijklmnopqrstuvwx \
   9  EXOSCALE_API_SECRET=xxxxxxx \
  10  lego --dns exoscale -d '*.example.com' -d example.com run
  11  '''
  12  
  13  [Configuration]
  14    [Configuration.Credentials]
  15      EXOSCALE_API_KEY = "API key"
  16      EXOSCALE_API_SECRET = "API secret"
  17    [Configuration.Additional]
  18      EXOSCALE_ENDPOINT = "API endpoint URL"
  19      EXOSCALE_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  20      EXOSCALE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  21      EXOSCALE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  22      EXOSCALE_HTTP_TIMEOUT = "API request timeout in seconds (Default: 60)"
  23  
  24  [Links]
  25    API = "https://openapi-v2.exoscale.com/#endpoint-dns"
  26    GoClient = "https://github.com/exoscale/egoscale"
  27