From 010e5039cca36eced58d4ad926f21770565e3f36 Mon Sep 17 00:00:00 2001 From: Solvik Blum Date: Thu, 9 Nov 2023 19:20:46 +0100 Subject: [PATCH] add mention to docstring that the NetworkValue filters won't touch anything except A/AAAA --- octodns/processor/filter.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/octodns/processor/filter.py b/octodns/processor/filter.py index 34115d5..77f66ea 100644 --- a/octodns/processor/filter.py +++ b/octodns/processor/filter.py @@ -222,7 +222,8 @@ class NameRejectlistFilter(_NameBaseFilter, RejectsMixin): class NetworkValueAllowlistFilter(_NetworkValueBaseFilter, AllowsMixin): - '''Only manage records with values that match the provider patterns + '''Only manage A and AAAA records with values that match the provider patterns + All other types will be left as-is. Example usage: @@ -249,7 +250,8 @@ class NetworkValueAllowlistFilter(_NetworkValueBaseFilter, AllowsMixin): class NetworkValueRejectlistFilter(_NetworkValueBaseFilter, RejectsMixin): - '''Reject managing records with value matching a that match the provider patterns + '''Reject managing A and AAAA records with value matching a that match the provider patterns + All other types will be left as-is. Example usage: