diff options
Diffstat (limited to 'plugin/k8s_external/apex.go')
-rw-r--r-- | plugin/k8s_external/apex.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/k8s_external/apex.go b/plugin/k8s_external/apex.go index 85edbea6c..0ce00a7c3 100644 --- a/plugin/k8s_external/apex.go +++ b/plugin/k8s_external/apex.go @@ -93,7 +93,7 @@ func (e *External) soa(state request.Request) *dns.SOA { soa := &dns.SOA{Hdr: header, Mbox: dnsutil.Join(e.hostmaster, e.apex, state.Zone), Ns: dnsutil.Join("ns1", e.apex, state.Zone), - Serial: 12345, // Also dynamic? + Serial: e.externalSerialFunc(state.Zone), Refresh: 7200, Retry: 1800, Expire: 86400, |