mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
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:
@@ -36,7 +36,7 @@ class CloudflareProvider(BaseProvider):
|
|||||||
'''
|
'''
|
||||||
SUPPORTS_GEO = False
|
SUPPORTS_GEO = False
|
||||||
# TODO: support SRV
|
# TODO: support SRV
|
||||||
UNSUPPORTED_TYPES = ('NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
|
UNSUPPORTED_TYPES = ('ALIAS', 'NAPTR', 'PTR', 'SOA', 'SRV', 'SSHFP')
|
||||||
|
|
||||||
MIN_TTL = 120
|
MIN_TTL = 120
|
||||||
TIMEOUT = 15
|
TIMEOUT = 15
|
||||||
|
|||||||
@@ -173,7 +173,7 @@ class Route53Provider(BaseProvider):
|
|||||||
self._health_checks = None
|
self._health_checks = None
|
||||||
|
|
||||||
def supports(self, record):
|
def supports(self, record):
|
||||||
return record._type != 'SSHFP'
|
return record._type not in ('ALIAS', 'SSHFP')
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def r53_zones(self):
|
def r53_zones(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user