opentofu/terraform/testdata/graph-builder-apply-basic/main.tf
2019-06-30 10:16:15 +02:00

10 lines
164 B
HCL

module "child" {
source = "./child"
}
resource "test_object" "create" {}
resource "test_object" "other" {
test_string = "${test_object.create.test_string}"
}