How can I circumvent the CharacterStringTooLong fo...
# aws
l
How can I circumvent the CharacterStringTooLong for a DKIM DNS record in Pulumi? If I split the string, Pulumi adds a newline between what is now 2 records. It also sorts alphabetically. https://aws.amazon.com/premiumsupport/knowledge-center/route53-resolve-dkim-text-record-error/
s
@limited-rainbow-51650 Doesn’t the documented way work?
To specify a single record value longer than 255 characters such as a TXT record for DKIM, add 
\"\"
 inside the configuration string (e.g. 
"first255characters\"\"morecharacters"
)
l
To be honest, I seem to have overlooked that in the docs… Let me try.
s
l
It works. Tnx.