Merge pull request #8 from pr0ton11/fix/fix-solver-name-constraint

Fix the solvers name to allow webhook registration
This commit is contained in:
Marc Singer 2026-02-21 09:35:12 +01:00 committed by GitHub
commit e4cad794f7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ spec:
key: token key: token
name: desec-io-token name: desec-io-token
groupName: acme.pr0ton11.github.com groupName: acme.pr0ton11.github.com
solverName: deSEC solverName: desec
``` ```
## Create a manual certificate ## Create a manual certificate

View file

@ -31,7 +31,7 @@ type DeSECDNSProviderSolver struct {
// Returns the name of the DNS solver // Returns the name of the DNS solver
func (s *DeSECDNSProviderSolver) Name() string { func (s *DeSECDNSProviderSolver) Name() string {
return "deSEC" return "desec"
} }
// Initializes a new client // Initializes a new client