Quick-fix disable ALIAS for Route53 & Cloudflare

Cloudflare could potentially support it, but their details are different enough
that i'll need to be looked into specifically later.
This commit is contained in:
Ross McFarland
2017-06-20 08:39:59 -07:00
parent cdba531175
commit ce0b58d57e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ class CloudflareProvider(BaseProvider):
'''
SUPPORTS_GEO = False
# TODO: support SRV
UNSUPPORTED_TYPES = ('NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
UNSUPPORTED_TYPES = ('ALIAS', 'NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
MIN_TTL = 120
TIMEOUT = 15
+1 -1
View File
@@ -173,7 +173,7 @@ class Route53Provider(BaseProvider):
self._health_checks = None
def supports(self, record):
return record._type != 'SSHFP'
return record._type not in ('ALIAS', 'SSHFP')
@property
def r53_zones(self):