designate.toml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Name = "Designate DNSaaS for Openstack"
  2. Description = ''''''
  3. URL = "https://docs.openstack.org/designate/latest/"
  4. Code = "designate"
  5. Since = "v2.2.0"
  6. Example = '''
  7. # With a `clouds.yaml`
  8. OS_CLOUD=my_openstack \
  9. lego --email you@example.com --dns designate -d '*.example.com' -d example.com run
  10. # or
  11. OS_AUTH_URL=https://openstack.example.org \
  12. OS_REGION_NAME=RegionOne \
  13. OS_PROJECT_ID=23d4522a987d4ab529f722a007c27846
  14. OS_USERNAME=myuser \
  15. OS_PASSWORD=passw0rd \
  16. lego --email you@example.com --dns designate -d '*.example.com' -d example.com run
  17. # or
  18. OS_AUTH_URL=https://openstack.example.org \
  19. OS_REGION_NAME=RegionOne \
  20. OS_AUTH_TYPE=v3applicationcredential \
  21. OS_APPLICATION_CREDENTIAL_ID=imn74uq0or7dyzz20dwo1ytls4me8dry \
  22. OS_APPLICATION_CREDENTIAL_SECRET=68FuSPSdQqkFQYH5X1OoriEIJOwyLtQ8QSqXZOc9XxFK1A9tzZT6He2PfPw0OMja \
  23. lego --email you@example.com --dns designate -d '*.example.com' -d example.com run
  24. '''
  25. Additional = '''
  26. ## Description
  27. There are three main ways of authenticating with Designate:
  28. 1. The first one is by using the `OS_CLOUD` environment variable and a `clouds.yaml` file.
  29. 2. The second one is using your username and password, via the `OS_USERNAME`, `OS_PASSWORD` and `OS_PROJECT_NAME` environment variables.
  30. 3. The third one is by using an application credential, via the `OS_APPLICATION_CREDENTIAL_*` and `OS_USER_ID` environment variables.
  31. For the username/password and application methods, the `OS_AUTH_URL` and `OS_REGION_NAME` environment variables are required.
  32. For more information, you can read about the different methods of authentication with OpenStack in the Keystone's documentation and the gophercloud documentation:
  33. - [Keystone username/password](https://docs.openstack.org/keystone/latest/user/supported_clients.html)
  34. - [Keystone application credentials](https://docs.openstack.org/keystone/latest/user/application_credentials.html)
  35. Public cloud providers with support for Designate:
  36. - [Fuga Cloud](https://fuga.cloud/)
  37. '''
  38. [Configuration]
  39. [Configuration.Credentials]
  40. OS_AUTH_URL = "Identity endpoint URL"
  41. OS_USERNAME = "Username"
  42. OS_PASSWORD = "Password"
  43. OS_USER_ID = "User ID"
  44. OS_APPLICATION_CREDENTIAL_ID = "Application credential ID"
  45. OS_APPLICATION_CREDENTIAL_NAME = "Application credential name"
  46. OS_APPLICATION_CREDENTIAL_SECRET = "Application credential secret"
  47. OS_PROJECT_NAME = "Project name"
  48. OS_REGION_NAME = "Region name"
  49. [Configuration.Additional]
  50. OS_PROJECT_ID = "Project ID"
  51. OS_TENANT_NAME = "Tenant name (deprecated see OS_PROJECT_NAME and OS_PROJECT_ID)"
  52. DESIGNATE_ZONE_NAME = "The zone name to use in the OpenStack Project to manage TXT records."
  53. DESIGNATE_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 10)"
  54. DESIGNATE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 600)"
  55. DESIGNATE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 10)"
  56. [Links]
  57. API = "https://docs.openstack.org/designate/latest/"
  58. GoClient = "https://pkg.go.dev/github.com/gophercloud/gophercloud/openstack/dns/v2"