10 lines
144 B
Plaintext
10 lines
144 B
Plaintext
|
|
resource "aws_instance" "parent" {
|
||
|
|
count = 2
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
thi<ngs = "${join(",", aws_instance.parent.*.id)}"
|
||
|
|
}
|
||
|
|
|