exoscale.toml 888 B

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