Files
2023-09-20 15:16:53 +03:00

9 lines
147 B
HCL

module "child" {
source = "./child"
value = "${join(" ", aws_instance.test.*.id)}"
}
resource "aws_instance" "test" {
value = "yes"
}