mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
8 lines
140 B
HCL
8 lines
140 B
HCL
resource "aws_instance" "b" {
|
|
count = length(var.ids)
|
|
require_new = var.ids[count.index]
|
|
}
|
|
|
|
variable "ids" {
|
|
type = list(string)
|
|
}
|