linode.toml raw

   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  
   8  Example = '''
   9  LINODE_TOKEN=xxxxx \
  10  lego --dns linode -d '*.example.com' -d example.com run
  11  '''
  12  
  13  [Configuration]
  14    [Configuration.Credentials]
  15      LINODE_TOKEN = "API token"
  16    [Configuration.Additional]
  17      LINODE_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 15)"
  18      LINODE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 120)"
  19      LINODE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 300)"
  20      LINODE_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  21  
  22  [Links]
  23    API = "https://developers.linode.com/api/v4"
  24    GoClient = "https://github.com/linode/linodego"
  25