Files
opentf/internal/tofu/testdata/apply-module-replace-cycle/mod2/main.tf
2023-09-20 15:16:53 +03:00

9 lines
140 B
HCL

resource "aws_instance" "b" {
count = length(var.ids)
require_new = var.ids[count.index]
}
variable "ids" {
type = list(string)
}