Files
example.terraform/test/listInHeredoc.tf
T
2020-10-26 21:12:31 +08:00

11 lines
125 B
Terraform

locals {
ips = ["1.2.3.4", "2.3.4.5"]
}
output "out" {
value = <<EOF
This is the result:
${jsonencode(local.ips)}
EOF
}