mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-05-11 05:55:12 +00:00
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:
@ -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
|
||||
|
@ -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(),
|
||||
|
Reference in New Issue
Block a user