-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for a DNS provider per ACME domain #2773
Comments
Duplicate of #2710 |
#2710 is not a duplicate of this issue. #2710 describes different In the config we use have only one |
This comment has been minimized.
This comment has been minimized.
Fix traefik#2773 and traefik#3378, and make environment variables for the providers configurable from the configuration provider Example: [acme.dnsChallenge] provider = "route53" environment = ["AWS_ACCESS_KEY_ID=abcd", "AWS_SECRET_ACCESS_KEY=efgh"] [[acme.domains]] main = "*.example.org" sans = ["example.org"] challenge = "dns" # dns/http/tls dnsProvider = "cloudflare" dnsEnvironment = ["CF_API_EMAIL=mail@example.org", "CT_API_KEY=1234"]
I’ve the same need. use the dns challenge with different providers |
Close in favor of #4872 - Feel free to subscribe there for updates. |
Do you want to request a feature or report a bug?
feature
What did you do?
Tried to set different a DNS provider for a domain in
acme.domains
What did you expect to see?
Currently it is only possible to set a global
dnsProvider
foracme
. Since we have domains on different registries we would like to use a differentdnsProvider
for some domains. For an example how this could work see the example configuration below.It would be nice if you could still set a default dnsProvider and then have the ability to override it in the
acme.domains
section.In the example above
abc.com
will default toroute53
and1234.com
will use the override (namecheap
)The text was updated successfully, but these errors were encountered: