mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-16 16:00:37 -05:00
11 lines
163 B
HCL
11 lines
163 B
HCL
resource "test_object" "foo" {}
|
|
|
|
module "child1" {
|
|
source = "./child1"
|
|
instance_id = "${test_object.foo.id}"
|
|
}
|
|
|
|
module "child2" {
|
|
source = "./child2"
|
|
}
|