terraform/configs/configupgrade/testdata/valid/heredoc-standard/want/heredoc.tf

17 lines
173 B
HCL

locals {
baz = {
"greeting" = "hello"
}
cert_options = <<EOF
A
B ${local.baz["greeting"]}
C
EOF
}
output "local" {
value = local.cert_options
}