opentofu/terraform/test-fixtures/plan-module-multi-var/main.tf

10 lines
143 B
Terraform
Raw Normal View History

resource "aws_instance" "parent" {
count = 2
}
module "child" {
source = "./child"
2014-12-09 02:27:55 -06:00
things = "${join(",", aws_instance.parent.*.id)}"
}