opentofu/terraform/test-fixtures/graph-count/main.tf
Mitchell Hashimoto d28e5a1638 dos2unix
2014-07-28 10:43:00 -07:00

8 lines
131 B
HCL

resource "aws_instance" "web" {
count = 3
}
resource "aws_load_balancer" "weblb" {
members = "${aws_instance.web.*.id}"
}