16 lines
169 B
Terraform
16 lines
169 B
Terraform
|
locals {
|
||
|
baz = {
|
||
|
"greeting" = "hello"
|
||
|
}
|
||
|
cert_options = <<-EOF
|
||
|
A
|
||
|
B ${local.baz["greeting"]}
|
||
|
C
|
||
|
EOF
|
||
|
|
||
|
}
|
||
|
|
||
|
output "local" {
|
||
|
value = local.cert_options
|
||
|
}
|