Skip to content

Commit

Permalink
ns1: fix record creation (#2115)
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed Feb 16, 2024
1 parent fd6047a commit 1106ad3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Expand Up @@ -13,8 +13,8 @@ jobs:
runs-on: ubuntu-latest
env:
GO_VERSION: stable
GOLANGCI_LINT_VERSION: ${{vars.GOLANGCI_LINT_VERSION}}
HUGO_VERSION: ${{vars.HUGO_VERSION}}
GOLANGCI_LINT_VERSION: v1.56.1
HUGO_VERSION: 0.117.0
CGO_ENABLED: 0
LEGO_E2E_TESTS: CI
MEMCACHED_HOSTS: localhost:11211
Expand Down
4 changes: 3 additions & 1 deletion providers/dns/ns1/ns1.go
Expand Up @@ -97,7 +97,9 @@ func (d *DNSProvider) Present(domain, token, keyAuth string) error {
if errors.Is(err, rest.ErrRecordMissing) || record == nil {
log.Infof("Create a new record for [zone: %s, fqdn: %s, domain: %s]", zone.Zone, info.EffectiveFQDN, domain)

record = dns.NewRecord(zone.Zone, dns01.UnFqdn(info.EffectiveFQDN), "TXT", nil, nil)
// Work through a bug in the NS1 API library that causes 400 Input validation failed (Value None for field '<obj>.filters' is not of type ...)
// So the `tags` and `blockedTags` parameters should be initialized to empty.
record = dns.NewRecord(zone.Zone, dns01.UnFqdn(info.EffectiveFQDN), "TXT", make(map[string]string), make([]string, 0))
record.TTL = d.config.TTL
record.Answers = []*dns.Answer{{Rdata: []string{info.Value}}}

Expand Down

0 comments on commit 1106ad3

Please sign in to comment.