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

23 lines
658 B
TOML
Raw Normal View History

Name = "Gandi"
Description = """"""
URL = "https://www.gandi.net"
Code = "gandi"
Since = "v0.3.0"
Example = '''
GANDI_API_KEY=abcdefghijklmnopqrstuvwx \
2024-11-08 00:55:04 +02:00
lego --email you@example.com --dns gandi -d '*.example.com' -d example.com run
'''
[Configuration]
[Configuration.Credentials]
GANDI_API_KEY = "API key"
[Configuration.Additional]
GANDI_POLLING_INTERVAL = "Time between DNS propagation check"
GANDI_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
GANDI_TTL = "The TTL of the TXT record used for the DNS challenge"
GANDI_HTTP_TIMEOUT = "API request timeout"
[Links]
2021-04-25 11:51:37 +02:00
API = "https://doc.rpc.gandi.net/index.html"