This package contains a DNS provider module for Caddy. It can be used to manage DNS records in OpenStack Designate DNS zones.
dns.providers.openstack-designate
See the associated README in the libdns package for important information about credentials.
To compile this Caddy module, follow the steps describe at the Caddy Build from Source instructions and import the github.com/caddy-dns/openstack-designate
plugin
To use this module for the ACME DNS challenge, configure the ACME issuer in your Caddy JSON like so:
{
"module": "acme",
"challenges": {
"dns": {
"provider": {
"name": "openstack-designate",
"region_name": "{env.OS_REGION_NAME}",
"tenant_id": "{env.OS_TENANT_ID}",
"identity_api_version": "{env.OS_IDENTITY_API_VERSION}",
"password": "{env.OS_PASSWORD}",
"username": "{env.OS_USERNAME}",
"tenant_name": "{env.OS_TENANT_NAME}",
"auth_url": "{env.OS_AUTH_URL}",
"endpoint_type": "{env.OS_ENDPOINT_TYPE}"
}
}
}
}
or with the Caddyfile:
tls {
dns openstack-designate {
region_name {$OS_REGION_NAME}
tenant_id {$OS_TENANT_ID}
identity_api_version {$OS_IDENTITY_API_VERSION}
password {$OS_PASSWORD}
username {$OS_USERNAME}
tenant_name {$OS_TENANT_NAME}
auth_url {$OS_AUTH_URL}
endpoint_type {$OS_ENDPOINT_TYPE}
}
}