Mike Hosker
Mike Hosker
Thanks for that, very useful in troubleshooting. So it would appear that the correct records are being deleted however I am still getting the following error - `TypeError: cannot unpack...
Its odd, its almost like `.remove_record` is being called after its worked out the changes... so it sees me add in a new CNAME but doesn't see the bit before...
After a little more troubleshooting... I added `lenient=True` into `.add_record` which "solves" the problem of the coexisting CNAMEs error, although I don't like it as CNAMEs shouldn't be coexisting anyway...
Update: I worked it out - I was only doing `return desired` not `return desired, existing` as I should have been... hence the odd errors! Well... I feel stupid and...
Looking to begin the route of a pull request for this processor and checking out the tests, is there any documentation regarding creating a test for a processor? Or any...
Thanks for that info... very useful. Indeed, it is VERY CF specific, so I agree octodns-cloudflare is a good place for it :) One question... how can I check if...
Awesome, that was a great pointer in the right direction.... :) I ended up doing ```python # Check if zone is destined for Cloudflare if isinstance(target, CloudflareProvider): # If it...
To follow up on this - I have got the code fully integrated into the CF provider now and all is working as expected. However, through testing I have run...
> I'm running into a similar issues when creating the `azuread_directory_role_eligibility_schedule_request` from scratch. > > ```hcl > resource "azuread_directory_role" "internal_it_helpdesk_admin" { > display_name = "Helpdesk Administrator" > } > >...