1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 17:21:50 +02:00
lego/providers/dns/volcengine/volcengine.toml

29 lines
905 B
TOML
Raw Normal View History

Name = "Volcano Engine/火山引擎"
Description = ''''''
URL = "https://www.volcengine.com/"
Code = "volcengine"
Since = "v4.19.0"
Example = '''
VOLC_ACCESSKEY=xxx \
VOLC_SECRETKEY=yyy \
2024-11-08 00:55:04 +02:00
lego --email you@example.com --dns volcengine -d '*.example.com' -d example.com run
'''
[Configuration]
[Configuration.Credentials]
VOLC_ACCESSKEY = "Access Key ID (AK)"
VOLC_SECRETKEY = "Secret Access Key (SK)"
[Configuration.Additional]
VOLC_REGION = "Region"
VOLC_HOST = "API host"
VOLC_SCHEME = "API scheme"
VOLC_POLLING_INTERVAL = "Time between DNS propagation check"
VOLC_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
VOLC_TTL = "The TTL of the TXT record used for the DNS challenge"
VOLC_HTTP_TIMEOUT = "API request timeout"
[Links]
API = "https://www.volcengine.com/docs/6758/155086"
GoClient = "https://github.com/volcengine/volc-sdk-golang"