We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So, for TXT records over a certain length DNS requires them to be split and the record comes back split from the GANDI API.
This means that for things like DKIM records, even if you add quotes into the string the resource always appears to require re-creation.
Example record with dummy data to show the TF outut on plan;
# gandi_livedns_record.test_long_txt_menutia_io will be updated in-place ~ resource "gandi_livedns_record" "test_long_txt_menutia_io" { id = "menutia.io/_long_text/TXT" name = "_long_text" ttl = 3600 type = "TXT" ~ values = [ - "\"012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789\" \"01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789\"", + "\"01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789\"", ] zone = "menutia.io" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So, for TXT records over a certain length DNS requires them to be split and the record comes back split from the GANDI API.
This means that for things like DKIM records, even if you add quotes into the string the resource always appears to require re-creation.
Example record with dummy data to show the TF outut on plan;
The text was updated successfully, but these errors were encountered: