mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-17 10:01:05 -05:00
A typo in the config caused it to disagree with the plan on whether a resource should be CreateBeforeDestroy, preventing it from being ordered properly. Add the new CreateBeforeDestroy field to the test fixture state as well for completeness.
8 lines
102 B
HCL
8 lines
102 B
HCL
resource "aws_instance" "a" {
|
|
require_new = "new"
|
|
}
|
|
|
|
output "ids" {
|
|
value = [aws_instance.a.id]
|
|
}
|