mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
8 lines
147 B
HCL
8 lines
147 B
HCL
module "child" {
|
|
source = "./child"
|
|
value = "${join(" ", aws_instance.test.*.id)}"
|
|
}
|
|
|
|
resource "aws_instance" "test" {
|
|
value = "yes"
|
|
}
|