mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-14 19:00:37 -05:00
9 lines
147 B
HCL
9 lines
147 B
HCL
module "child" {
|
|
source = "./child"
|
|
value = "${join(" ", aws_instance.test.*.id)}"
|
|
}
|
|
|
|
resource "aws_instance" "test" {
|
|
value = "yes"
|
|
}
|