Problem
I am receiving outputs which contain the <<EOT
and EOT
delimiter, for an unknown reason. It only appears in the outputs for which I use the random_password
resource on.
Example Input
resource “random_password” “http-cs-teamserver-password” {
count = 2
length = 15
special = true
override_special = “@%)-_+[}:”
}
output “dns-cs-teamserver-passwords” {
value = join("\n", random_password.dns-cs-teamserver-password[*].result)
}
Example Output
dns-cs-teamserver-passwords = <<EOT
-@GoESLjwrgXE4F
_PfWDI[zJ:yS5Sb
EOT
Is there a way to fix this minor issue? I can upload an image of the stdout output if needed.
Thank you for your time!