We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72711b commit 7d627c8Copy full SHA for 7d627c8
internal/provider/providers/cloudflare/provider.go
@@ -78,7 +78,7 @@ var (
78
79
func (p *Provider) isValid() error {
80
switch {
81
- case p.key != "": // email and key must be provided
+ case p.email != "", p.key != "": // email and key must be provided
82
83
case !keyRegex.MatchString(p.key):
84
return fmt.Errorf("%w: key %q does not match regex %q",
0 commit comments