diff --git a/octodns/provider/cloudflare.py b/octodns/provider/cloudflare.py index 0d058dc..eb08952 100644 --- a/octodns/provider/cloudflare.py +++ b/octodns/provider/cloudflare.py @@ -260,7 +260,7 @@ class CloudflareProvider(BaseProvider): if isinstance(change, Update): existing = change.existing.data new = change.new.data - new['ttl'] = max(120, new['ttl']) + new['ttl'] = max(self.MIN_TTL, new['ttl']) if new == existing: return False