diff --git a/build/generate/featureMatrix.go b/build/generate/featureMatrix.go index f25b554a2..0091c107d 100644 --- a/build/generate/featureMatrix.go +++ b/build/generate/featureMatrix.go @@ -42,7 +42,7 @@ func generateFeatureMatrix() error { {"R53_ALIAS", "Provider supports Route 53 limited ALIAS"}, {"AZURE_ALIAS", "Provider supports Azure DNS limited ALIAS"}, {"DS", "Provider supports adding DS records"}, - { "AKAMAICDN", "Provider supports adding AKAMAICDN records"}, + {"AKAMAICDN", "Provider supports adding AKAMAICDN records"}, {"dual host", "This provider is recommended for use in 'dual hosting' scenarios. Usually this means the provider allows full control over the apex NS records"}, {"create-domains", "This means the provider can automatically create domains that do not currently exist on your account. The 'dnscontrol create-domains' command will initialize any missing domains"}, diff --git a/providers/dnsmadeeasy/api.go b/providers/dnsmadeeasy/api.go index 265985396..8030892da 100644 --- a/providers/dnsmadeeasy/api.go +++ b/providers/dnsmadeeasy/api.go @@ -18,7 +18,7 @@ func newProvider(apiKey string, secretKey string, sandbox bool, debug bool) *dns } fmt.Printf("Creating DNSMADEEASY provider for %q\n", baseURL) - + return &dnsMadeEasyProvider{ restAPI: &dnsMadeEasyRestAPI{ apiKey: apiKey, diff --git a/providers/dnsmadeeasy/types.go b/providers/dnsmadeeasy/types.go index aedf6628d..c9ea51487 100644 --- a/providers/dnsmadeeasy/types.go +++ b/providers/dnsmadeeasy/types.go @@ -189,7 +189,7 @@ func fromRecordConfig(rc *models.RecordConfig) *recordRequestData { func systemNameServerToRecordConfig(domain string, nameServer string) *models.RecordConfig { // DNS Made Easy does not allow the system name servers to be edited, and said records appear to always have a fixed TTL of 86400. - const fixedNameServerRecordTTL = 86400; + const fixedNameServerRecordTTL = 86400 target := nameServer + "." return toRecordConfig(domain, &recordResponseDataEntry{Type: "NS", Value: target, TTL: fixedNameServerRecordTTL})