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

13 lines
187 B
HCL

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