mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-10-09 13:27:39 +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 indicates the provider can handle CAA records
|
||||||
CanUseCAA
|
CanUseCAA
|
||||||
|
|
||||||
// CanUseDs indicates that the provider can handle DS record types
|
// CanUseDS indicates that the provider can handle DS record types
|
||||||
CanUseDS
|
CanUseDS
|
||||||
|
|
||||||
// CanUsePTR indicates the provider can handle PTR records
|
// CanUsePTR indicates the provider can handle PTR records
|
||||||
|
|
|
@ -16,6 +16,7 @@ import (
|
||||||
|
|
||||||
var features = providers.DocumentationNotes{
|
var features = providers.DocumentationNotes{
|
||||||
providers.CanGetZones: providers.Can(),
|
providers.CanGetZones: providers.Can(),
|
||||||
|
providers.CanUseDS: providers.Can(),
|
||||||
providers.CanUseCAA: providers.Can(),
|
providers.CanUseCAA: providers.Can(),
|
||||||
providers.CanUsePTR: providers.Can(),
|
providers.CanUsePTR: providers.Can(),
|
||||||
providers.CanUseSRV: providers.Can(),
|
providers.CanUseSRV: providers.Can(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue