Mike Hosker

Results 19 comments of Mike Hosker

Thanks @ross ! I suspect the reason you may not have run across this before is due to the fact CNAME setup for Cloudflare is only offered in business or...

A quick question as a follow up to this... when using `Processor.process_target_zone` should I expect to see the modified results in the sync noop output? Also, is there any documentation...

Interesting, I must be doing something wrong! This is the content of my cloudflare.py file which lives under the `processor` directory - ```python from .base import BaseProcessor, ProcessorException class CloudflareException(ProcessorException):...

Interesting... I note the following from my OctoDNS output - ![image](https://github.com/octodns/octodns/assets/37193543/ad68fc95-2abb-4d8c-b7d2-220761984719) It registers the processor seemingly, however it doesnt show it alongside the `sources` & `targets` - not sure if...

Indeed, I would concur that the processor is somehow not running... I have checked my prod.yaml config and it aligns with exactly what you have exampled. Changed my `process_target_zone` def...

OK! Good news - Boom works!!!! So... the processor seems to be linked correctly... but... I now suspect the for loop is at fault and potentially `existing.records` has nothing in...

Sorry for the delay here. Yes I am hopeful `process_source_and_target_zones` will do it. I'm getting a lot further anyway...! One question - what would be the value of `record.name` if...

A follow up to this... What is the correct way to delete a record when using `process_source_and_target_zones`. At the moment I keep running into errors as I have things like...

Thanks for the quick reply! OK, pleased to know at least my use of `.remove_record` is correct... Regarding the CNAME coexist, indeed I am aware of the inability and I...

Equally the following as far as I am aware should delete only the root records - ```python for record in desired.records: if record.name == "": desired.remove_record(record) return desired ``` But...