From 4e2dbd879d03413ce2f811f174270260ab709504 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli Date: Tue, 9 Jun 2020 13:31:09 -0400 Subject: [PATCH] Revert "Add support to GCLOUD provider for DS records (#760)" (#761) This reverts commit 14ff68b151b5db1f24bcdaccb30b6fa95897940a. --- providers/capabilities.go | 2 +- providers/gcloud/gcloudProvider.go | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/providers/capabilities.go b/providers/capabilities.go index f831a72f8..86cf7cf36 100644 --- a/providers/capabilities.go +++ b/providers/capabilities.go @@ -18,7 +18,7 @@ const ( // CanUseCAA indicates the provider can handle CAA records CanUseCAA - // CanUseDS indicates that the provider can handle DS record types + // CanUseDs indicates that the provider can handle DS record types CanUseDS // CanUsePTR indicates the provider can handle PTR records diff --git a/providers/gcloud/gcloudProvider.go b/providers/gcloud/gcloudProvider.go index 5a12a0ebe..a70c87f57 100644 --- a/providers/gcloud/gcloudProvider.go +++ b/providers/gcloud/gcloudProvider.go @@ -16,7 +16,6 @@ import ( var features = providers.DocumentationNotes{ providers.CanGetZones: providers.Can(), - providers.CanUseDS: providers.Can(), providers.CanUseCAA: providers.Can(), providers.CanUsePTR: providers.Can(), providers.CanUseSRV: providers.Can(),