1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 01:07:23 +02:00
lego/providers/dns/linode/linode.toml
2024-11-07 23:55:04 +01:00

25 lines
791 B
TOML

Name = "Linode (v4)"
Description = ''''''
URL = "https://www.linode.com/"
Code = "linode"
Aliases = ["linodev4"] # "linodev4" is for compatibility with v3, must be dropped in v5
Since = "v1.1.0"
Example = '''
LINODE_TOKEN=xxxxx \
lego --email you@example.com --dns linode -d '*.example.com' -d example.com run
'''
[Configuration]
[Configuration.Credentials]
LINODE_TOKEN = "API token"
[Configuration.Additional]
LINODE_POLLING_INTERVAL = "Time between DNS propagation check"
LINODE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
LINODE_TTL = "The TTL of the TXT record used for the DNS challenge"
LINODE_HTTP_TIMEOUT = "API request timeout"
[Links]
API = "https://developers.linode.com/api/v4"
GoClient = "https://github.com/linode/linodego"