linode.toml 782 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 --domains my.example.org run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. LINODE_TOKEN = "API token"
  14. [Configuration.Additional]
  15. LINODE_POLLING_INTERVAL = "Time between DNS propagation check"
  16. LINODE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
  17. LINODE_TTL = "The TTL of the TXT record used for the DNS challenge"
  18. LINODE_HTTP_TIMEOUT = "API request timeout"
  19. [Links]
  20. API = "https://developers.linode.com/api/v4"
  21. GoClient = "https://github.com/linode/linodego"