tencentcloud.toml 1.1 KB

123456789101112131415161718192021222324252627
  1. Name = "Tencent Cloud DNS"
  2. Description = ''''''
  3. URL = "https://cloud.tencent.com/product/cns"
  4. Code = "tencentcloud"
  5. Since = "v4.6.0"
  6. Example = '''
  7. TENCENTCLOUD_SECRET_ID=abcdefghijklmnopqrstuvwx \
  8. TENCENTCLOUD_SECRET_KEY=your-secret-key \
  9. lego --email you@example.com --dns tencentcloud -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. TENCENTCLOUD_SECRET_ID = "Access key ID"
  14. TENCENTCLOUD_SECRET_KEY = "Access Key secret"
  15. [Configuration.Additional]
  16. TENCENTCLOUD_SESSION_TOKEN = "Access Key token"
  17. TENCENTCLOUD_REGION = "Region"
  18. TENCENTCLOUD_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  19. TENCENTCLOUD_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  20. TENCENTCLOUD_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 600)"
  21. TENCENTCLOUD_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  22. [Links]
  23. API = "https://cloud.tencent.com/document/product/1427/56153"
  24. GoClient = "https://github.com/tencentcloud/tencentcloud-sdk-go"