blob: 40476512fa0957a099ed041eae0404c2f05eaf47 [file] [log] [blame]
variable "num" {}
resource "aws_instance" "foo" {
count = "${var.num}"
value = "foo"
}
resource "aws_instance" "bar" {
ami = "special"
value = "${join(",", aws_instance.foo.*.id)}"
}