bluecat.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. Name = "Bluecat"
  2. Description = ''''''
  3. URL = "https://www.bluecatnetworks.com"
  4. Code = "bluecat"
  5. Since = "v0.5.0"
  6. Example = '''
  7. BLUECAT_PASSWORD=mypassword \
  8. BLUECAT_DNS_VIEW=myview \
  9. BLUECAT_USER_NAME=myusername \
  10. BLUECAT_CONFIG_NAME=myconfig \
  11. BLUECAT_SERVER_URL=https://bam.example.com \
  12. BLUECAT_TTL=30 \
  13. lego --email you@example.com --dns bluecat -d '*.example.com' -d example.com run
  14. '''
  15. [Configuration]
  16. [Configuration.Credentials]
  17. BLUECAT_SERVER_URL = "The server URL, should have scheme, hostname, and port (if required) of the authoritative Bluecat BAM serve"
  18. BLUECAT_USER_NAME = "API username"
  19. BLUECAT_PASSWORD = "API password"
  20. BLUECAT_CONFIG_NAME = "Configuration name"
  21. BLUECAT_DNS_VIEW = "External DNS View Name"
  22. [Configuration.Additional]
  23. BLUECAT_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 2)"
  24. BLUECAT_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 60)"
  25. BLUECAT_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  26. BLUECAT_HTTP_TIMEOUT = "API request timeout in seconds (Default: 30)"
  27. BLUECAT_SKIP_DEPLOY = "Skip deployements"
  28. [Links]
  29. API = "https://docs.bluecatnetworks.com/r/Address-Manager-API-Guide/REST-API/9.1.0"