opentofu/internal/command/testdata/test/pass_with_locals/main.tf

8 lines
97 B
HCL

resource "test_resource" "foo" {
value = "bar"
}
locals {
value = test_resource.foo.value
}