mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
6c96e0f6ac
This fixes a bug where the Destroy diff was being kept around for nodes that shouldn't be destroyed. We added a test to verify this doesn't happen.
9 lines
115 B
HCL
9 lines
115 B
HCL
resource "aws_instance" "foo" {
|
|
foo = "foo"
|
|
count = 2
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "bar"
|
|
}
|