You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue Description:
When using multiple DNS providers (e.g. GoDaddy and Cloudflare) in a single certificate request, if the first domain is already verified, its DNS provider incorrectly "cascades" to the next unverified domain.
Steps to reproduce:
Have a valid cert with multiple domains using different DNS providers:
domain1.com using dns_gd (GoDaddy)
domain2.com using dns_cf (Cloudflare)
[etc]
When the cert is renewed:
domain1.com is marked as "verified_ok"
The code skips validation for domain1.com
But domain2.com incorrectly inherits dns_gd provider instead of using its dns_cf
Current behavior:
DNS provider from verified domains "cascades" to next unverified domain
Results in validation failures as wrong DNS provider is used
Expected behavior:
Each domain should maintain its own DNS provider mapping
Skipping verified domains should not affect DNS provider assignment for remaining domains
Suggested fixes:
Maintain DNS provider mapping separately from verification state
Don't increment alias_index when skipping verified domains
The text was updated successfully, but these errors were encountered:
Issue Description:
When using multiple DNS providers (e.g. GoDaddy and Cloudflare) in a single certificate request, if the first domain is already verified, its DNS provider incorrectly "cascades" to the next unverified domain.
Steps to reproduce:
Have a valid cert with multiple domains using different DNS providers:
[etc]
When the cert is renewed:
Current behavior:
Expected behavior:
Suggested fixes:
Maintain DNS provider mapping separately from verification state
Don't increment alias_index when skipping verified domains
The text was updated successfully, but these errors were encountered: