mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-05 06:01:56 -04:00
8 lines
105 B
HCL
8 lines
105 B
HCL
resource "test_resource" "foo" {
|
|
value = "bar"
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.foo.value
|
|
}
|