terraform/configs/configupgrade/test-fixtures/valid/heredoc-flush/input/heredoc.tf

13 lines
188 B
HCL

locals {
baz = { "greeting" = "hello" }
cert_options = <<-EOF
A
B ${lookup(local.baz, "greeting")}
C
EOF
}
output "local" {
value = "${local.cert_options}"
}