azion.toml 934 B

123456789101112131415161718192021222324
  1. Name = "Azion"
  2. Description = ''''''
  3. Code = "azion"
  4. Since = "v4.24.0"
  5. URL = "https://www.azion.com/en/products/edge-dns/"
  6. Example = '''
  7. AZION_PERSONAL_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxx \
  8. lego --email you@example.com --dns azion -d '*.example.com' -d example.com run
  9. '''
  10. [Configuration]
  11. [Configuration.Credentials]
  12. AZION_PERSONAL_TOKEN = "Your Azion personal token."
  13. [Configuration.Additional]
  14. AZION_PAGE_SIZE = "The page size for the API request (Default: 50)"
  15. AZION_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  16. AZION_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  17. AZION_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  18. AZION_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  19. [Links]
  20. API = "https://api.azion.com/"
  21. GoClient = "https://github.com/aziontech/azionapi-go-sdk"