exoscale.toml 962 B

1234567891011121314151617181920212223242526
  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 -d '*.example.com' -d example.com 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_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  18. EXOSCALE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  19. EXOSCALE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  20. EXOSCALE_HTTP_TIMEOUT = "API request timeout in seconds (Default: 60)"
  21. [Links]
  22. API = "https://openapi-v2.exoscale.com/#endpoint-dns"
  23. GoClient = "https://github.com/exoscale/egoscale"