mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 01:47:53 +08: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:
parent
5e441a4a98
commit
14ff68b151
2 changed files with 2 additions and 1 deletions
|
@ -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(),
|
||||
|
|
Loading…
Reference in a new issue