Add support to GCLOUD provider for DS records (#760)

* gcloud natively supports records of type DS
* doc fix: CanUseDs -> CanUseDS capitalisation fix
This commit is contained in:
Matthew Huxtable 2020-06-09 17:12:04 +01:00 committed by GitHub
parent 5e441a4a98
commit 14ff68b151
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -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

View file

@ -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(),