1
0

ibmcloud.toml 1007 B

12345678910111213141516171819202122232425
  1. Name = "IBM Cloud (SoftLayer)"
  2. Description = ''''''
  3. URL = "https://www.ibm.com/cloud/"
  4. Code = "ibmcloud"
  5. Since = "v4.5.0"
  6. Example = '''
  7. SOFTLAYER_USERNAME=xxxxx \
  8. SOFTLAYER_API_KEY=yyyyy \
  9. lego --email you@example.com --dns ibmcloud -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. SOFTLAYER_USERNAME = "Username (IBM Cloud is <accountID>_<emailAddress>)"
  14. SOFTLAYER_API_KEY = "Classic Infrastructure API key"
  15. [Configuration.Additional]
  16. SOFTLAYER_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  17. SOFTLAYER_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  18. SOFTLAYER_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  19. SOFTLAYER_TIMEOUT = "API request timeout in seconds (Default: 30)"
  20. [Links]
  21. API = "https://cloud.ibm.com/docs/dns?topic=dns-getting-started-with-the-dns-api"
  22. GoClient = "https://github.com/softlayer/softlayer-go"