blob: 527a0b84205c28ab5c776007fbf0b04ea206f653 [file] [log] [blame]
variable "instance_count" {
default = 1
}
resource "aws_instance" "test" {
count = "${var.instance_count}"
}
resource "aws_instance" "dependent" {
count = "${length(aws_instance.test)}"
}