mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-15 04:00:58 -05:00
Destroy-time references are not correctly or fully inverted when crossing module boundaries, causing cycle during apply.
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)
|
|
}
|