mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 04:00:58 -05:00
10 lines
143 B
HCL
10 lines
143 B
HCL
resource "aws_instance" "parent" {
|
|
count = 2
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
things = "${join(",", aws_instance.parent.*.id)}"
|
|
}
|
|
|