lego/providers/dns/ibmcloud/ibmcloud.toml
Ludovic Fernandez 3cefc7a51b
chore: fix grammar and typo (#1978)
Co-authored-by: Dominik Menke <git@dmke.org>
2023-07-29 12:59:24 +02:00

26 lines
898 B
TOML

Name = "IBM Cloud (SoftLayer)"
Description = ''''''
URL = "https://www.ibm.com/cloud/"
Code = "ibmcloud"
Since = "v4.5.0"
Example = '''
SOFTLAYER_USERNAME=xxxxx \
SOFTLAYER_API_KEY=yyyyy \
lego --email you@example.com --dns ibmcloud --domains my.example.org run
'''
[Configuration]
[Configuration.Credentials]
SOFTLAYER_USERNAME = "Username (IBM Cloud is <accountID>_<emailAddress>)"
SOFTLAYER_API_KEY = "Classic Infrastructure API key"
[Configuration.Additional]
SOFTLAYER_POLLING_INTERVAL = "Time between DNS propagation check"
SOFTLAYER_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
SOFTLAYER_TTL = "The TTL of the TXT record used for the DNS challenge"
SOFTLAYER_TIMEOUT = "API request timeout"
[Links]
API = "https://cloud.ibm.com/docs/dns?topic=dns-getting-started-with-the-dns-api"
GoClient = "https://github.com/softlayer/softlayer-go"