Looking for assistance with using gcloud to add a dns record to Google Cloud DNS. I'm able to add, modify, and remove records fine. The issue becomes when I try to use gcloud to add a DKIM TXT record that's larger than 255 characters. No matter what combo/syntax i use it either stores the first 255 characters or multiple txt values instead of a single "wrapped" txt record. This is the syntax i use:
gcloud dns record-sets create <dns-record> --zone=<dns-zone> --ttl 3600 --type TXT --rrdatas <RRDATA>
I need to know what format i need to put the RRDATA in for it to be treated as "one" TXT record with the values "wrapped" if that makes sense.
Any suggestions would be welcome. Thanks.