diff --git a/docs/_includes/matrix.html b/docs/_includes/matrix.html
index 1b5bdb86a..0d57882e9 100644
--- a/docs/_includes/matrix.html
+++ b/docs/_includes/matrix.html
@@ -826,6 +826,9 @@
|
|
|
+
+
+ |
|
|
|
@@ -844,6 +847,39 @@
|
|
|
+
+
+
+ |
+ |
+ |
+
+
+ |
+
+
+ |
+ |
+
+
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
+ |
|
|
diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go
index dd13c3eca..7cb8d19bf 100644
--- a/integrationTest/integration_test.go
+++ b/integrationTest/integration_test.go
@@ -839,7 +839,7 @@ func makeTests(t *testing.T) []*TestGroup {
),
testgroup("DS",
- requires(providers.canUseDS),
+ requires(providers.CanUseDS),
tc("create DS", ds("@", 1, 13, 1, "ADIGEST")),
tc("modify field 1", ds("@", 65535, 13, 1, "ADIGEST")),
tc("modify field 3", ds("@", 65535, 13, 2, "ADIGEST")),
diff --git a/integrationTest/providers.json b/integrationTest/providers.json
index 346279440..c1c94cecf 100644
--- a/integrationTest/providers.json
+++ b/integrationTest/providers.json
@@ -28,7 +28,8 @@
"CLOUDFLAREAPI_OLD": {
"apikey": "$CF_KEY",
"apiuser": "$CF_USER",
- "domain": "$CF_DOMAIN"
+ "domain": "$CF_DOMAIN",
+ "knownFailures": "54"
},
"CLOUDNS": {
"auth-id": "$CLOUDNS_AUTH_ID",
diff --git a/integrationTest/testing.txt b/integrationTest/testing.txt
deleted file mode 100644
index bd4f72d8a..000000000
--- a/integrationTest/testing.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-go test -v -verbose -provider BIND
-go test -v -verbose -provider AZURE_DNS
-go test -v -verbose -provider ROUTE53
-go test -v -verbose -provider GCLOUD
-go test -v -verbose -provider DIGITALOCEAN
-go test -v -verbose -provider GANDI_V5
-
--run TestDNSProviders -start 5 -end 6
-
-DONE go test -v -provider BIND
-DONE go test -v -provider AZURE_DNS
-DONE go test -v -provider ROUTE53
-DONE go test -v -provider GCLOUD
-REPORTED go test -v -provider NAMEDOTCOM
-REPORTED go test -v -provider CLOUDFLAREAPI
-DONE go test -v -provider DIGITALOCEAN
-DONE go test -v -provider GANDI_V5
-
-go test -v -verbose -provider NAMEDOTCOM -run TestDNSProviders -start 5 -end 6
-go test -v -verbose -provider CLOUDFLAREAPI -run TestDNSProviders -start 5 -end 6
diff --git a/pkg/normalize/validate.go b/pkg/normalize/validate.go
index 31c56e0d6..474f52be5 100644
--- a/pkg/normalize/validate.go
+++ b/pkg/normalize/validate.go
@@ -461,6 +461,7 @@ func init() {
{"ALIAS", providers.CanUseAlias},
{"AUTODNSSEC", providers.CanAutoDNSSEC},
{"CAA", providers.CanUseCAA},
+ {"DS", providers.CanUseDS},
{"NAPTR", providers.CanUseNAPTR},
{"PTR", providers.CanUsePTR},
{"R53_ALIAS", providers.CanUseRoute53Alias},