1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

Route 53 provider now supports CAA (#193)

This commit is contained in:
Koen Rouwhorst
2017-09-02 16:31:51 +02:00
committed by Tom Limoncelli
parent 7116fd9bce
commit 0798e4eb0e

View File

@ -57,7 +57,7 @@ func newRoute53(m map[string]string, metadata json.RawMessage) (*route53Provider
}
func init() {
providers.RegisterDomainServiceProviderType("ROUTE53", newRoute53Dsp, providers.CanUsePTR, providers.CanUseSRV)
providers.RegisterDomainServiceProviderType("ROUTE53", newRoute53Dsp, providers.CanUsePTR, providers.CanUseSRV, providers.CanUseCAA)
providers.RegisterRegistrarType("ROUTE53", newRoute53Reg)
}