mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-01 19:01:41 -05:00
8 lines
145 B
HCL
8 lines
145 B
HCL
resource "test_instance" "tmpl" {
|
|
foo = "${file("${path.module}/template.txt")}"
|
|
}
|
|
|
|
output "template" {
|
|
value = "${test_instance.tmpl.foo}"
|
|
}
|