blob: 83fb1dcd467bf2a3440f459067acd97668116c79 [file] [log] [blame]
resource "aws_instance" "b" {
count = length(var.ids)
require_new = var.ids[count.index]
}
variable "ids" {
type = list(string)
}