How (if possible) can I intercept content from a terraform resource?

I am facing issues with DNS addition requested never making it from our GKE cluster to Google Cloud DNS using the acme_certificate resource intermittently. While I prefer not to do a deep network dive as I imagine the issue is at the network level, is it possible to capture data from a provider (intercept) so I can manage the TXT record creation elsewhere?

Thanks!

Not intercept per se, but you can use the local-exec/remote-exec provisioners to run whatever code/tool you want that would manage this TXT record.

Thanks! I found a bug in the underlying go module and opened an issue. Thanks for the tip!