Browse Source

Merge pull request #197 from mvermaes/check-route53-against-all-supported-types

Check Route 53 records against all supported types
pull/221/head
Ross McFarland 8 years ago
committed by GitHub
parent
commit
87f8e0503b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      octodns/provider/route53.py

+ 1
- 1
octodns/provider/route53.py View File

@ -461,7 +461,7 @@ class Route53Provider(BaseProvider):
record_name = zone.hostname_from_fqdn(rrset['Name'])
record_name = _octal_replace(record_name)
record_type = rrset['Type']
if record_type == 'SOA':
if record_type not in self.SUPPORTS:
continue
if 'AliasTarget' in rrset:
# Alias records are Route53 specific and are not


Loading…
Cancel
Save