From 4c80526860cb7c573910b36e1121b061d1484b86 Mon Sep 17 00:00:00 2001 From: Brice Figureau Date: Thu, 1 Feb 2018 13:39:11 +0100 Subject: [PATCH] Fix R53_ALIAS not being registered as custom type (#310) (#311) Apparently I've forgot to register the R53_ALIAS custom record type, thus preventing to use R53_ALIAS in a js file. The integration still worked fine because they probably don't run the validation. --- providers/route53/route53Provider.go | 1 + 1 file changed, 1 insertion(+) diff --git a/providers/route53/route53Provider.go b/providers/route53/route53Provider.go index ad08d0089..3680a5887 100644 --- a/providers/route53/route53Provider.go +++ b/providers/route53/route53Provider.go @@ -70,6 +70,7 @@ var features = providers.DocumentationNotes{ func init() { providers.RegisterDomainServiceProviderType("ROUTE53", newRoute53Dsp, features) providers.RegisterRegistrarType("ROUTE53", newRoute53Reg) + providers.RegisterCustomRecordType("R53_ALIAS", "ROUTE53", "") } func sPtr(s string) *string {