linode.toml 893 B

123456789101112131415161718192021222324
  1. Name = "Linode (v4)"
  2. Description = ''''''
  3. URL = "https://www.linode.com/"
  4. Code = "linode"
  5. Aliases = ["linodev4"] # "linodev4" is for compatibility with v3, must be dropped in v5
  6. Since = "v1.1.0"
  7. Example = '''
  8. LINODE_TOKEN=xxxxx \
  9. lego --email you@example.com --dns linode -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. LINODE_TOKEN = "API token"
  14. [Configuration.Additional]
  15. LINODE_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 15)"
  16. LINODE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 120)"
  17. LINODE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 300)"
  18. LINODE_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  19. [Links]
  20. API = "https://developers.linode.com/api/v4"
  21. GoClient = "https://github.com/linode/linodego"