1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-31 12:27:25 +02:00
lego/providers/dns/iij/iij.toml
2025-01-11 15:35:31 +01:00

27 lines
885 B
TOML

Name = "Internet Initiative Japan"
Description = ''''''
URL = "https://www.iij.ad.jp/en/"
Code = "iij"
Since = "v1.1.0"
Example = '''
IIJ_API_ACCESS_KEY=xxxxxxxx \
IIJ_API_SECRET_KEY=yyyyyy \
IIJ_DO_SERVICE_CODE=zzzzzz \
lego --email you@example.com --dns iij -d '*.example.com' -d example.com run
'''
[Configuration]
[Configuration.Credentials]
IIJ_API_ACCESS_KEY = "API access key"
IIJ_API_SECRET_KEY = "API secret key"
IIJ_DO_SERVICE_CODE = "DO service code"
[Configuration.Additional]
IIJ_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 4)"
IIJ_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 240)"
IIJ_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 300)"
[Links]
API = "https://manual.iij.jp/p2/pubapi/"
GoClient = "https://github.com/iij/doapi"