mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-07 12:02:04 -04:00
9 lines
140 B
HCL
9 lines
140 B
HCL
resource "aws_instance" "b" {
|
|
count = length(var.ids)
|
|
require_new = var.ids[count.index]
|
|
}
|
|
|
|
variable "ids" {
|
|
type = list(string)
|
|
}
|