diff --git a/octodns/processor/ownership.py b/octodns/processor/ownership.py index 3323019..ed8f34a 100644 --- a/octodns/processor/ownership.py +++ b/octodns/processor/ownership.py @@ -32,7 +32,9 @@ class OwnershipProcessor(BaseProcessor): name, {'type': 'TXT', 'ttl': 60, 'value': self.txt_value}, ) - desired.add_record(txt) + # add these w/lenient to cover the case when the ownership record + # for a NS delegation record should technically live in the subzone + desired.add_record(txt, lenient=True) return desired