mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-03 04:10:28 -06: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"
|
|
}
|