inwx.toml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. Name = "INWX"
  2. Description = ''''''
  3. URL = "https://www.inwx.de/en"
  4. Code = "inwx"
  5. Since = "v2.0.0"
  6. Example = '''
  7. INWX_USERNAME=xxxxxxxxxx \
  8. INWX_PASSWORD=yyyyyyyyyy \
  9. lego --email you@example.com --dns inwx -d '*.example.com' -d example.com run
  10. # 2FA
  11. INWX_USERNAME=xxxxxxxxxx \
  12. INWX_PASSWORD=yyyyyyyyyy \
  13. INWX_SHARED_SECRET=zzzzzzzzzz \
  14. lego --email you@example.com --dns inwx -d '*.example.com' -d example.com run
  15. '''
  16. [Configuration]
  17. [Configuration.Credentials]
  18. INWX_USERNAME = "Username"
  19. INWX_PASSWORD = "Password"
  20. [Configuration.Additional]
  21. INWX_SHARED_SECRET = "shared secret related to 2FA"
  22. INWX_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  23. INWX_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 360)"
  24. INWX_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 300)"
  25. INWX_SANDBOX = "Activate the sandbox (boolean)"
  26. [Links]
  27. API = "https://www.inwx.de/en/help/apidoc"
  28. GoClient = "https://github.com/nrdcg/goinwx"