From 14ff68b151b5db1f24bcdaccb30b6fa95897940a Mon Sep 17 00:00:00 2001 From: Matthew Huxtable Date: Tue, 9 Jun 2020 17:12:04 +0100 Subject: [PATCH] Add support to GCLOUD provider for DS records (#760) * gcloud natively supports records of type DS * doc fix: CanUseDs -> CanUseDS capitalisation fix --- providers/capabilities.go | 2 +- providers/gcloud/gcloudProvider.go | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/providers/capabilities.go b/providers/capabilities.go index 86cf7cf36..f831a72f8 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 a70c87f57..5a12a0ebe 100644 --- a/providers/gcloud/gcloudProvider.go +++ b/providers/gcloud/gcloudProvider.go @@ -16,6 +16,7 @@ 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(),