inwx.toml 972 B

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 --domains my.example.org run
  10. # 2FA
  11. INWX_USERNAME=xxxxxxxxxx \
  12. INWX_PASSWORD=yyyyyyyyyy \
  13. INWX_SHARED_SECRET=zzzzzzzzzz \
  14. lego --email you@example.com --dns inwx --domains my.example.org 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"
  23. INWX_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation (default 360s)"
  24. INWX_TTL = "The TTL of the TXT record used for the DNS challenge"
  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"