Encoding XML in Terraform
08:47 09 Jun 2026

When building an XML string in Terraform like this

 
    ${var.my_key} 
 

I get incorrect final text because var.my_key containes XML reserved characters. How to encode this variable?

xml terraform