Files
opentf/terraform/testdata/apply-module-replace-cycle/mod1/main.tf
James Bardin cb99dddb4d fix a flapping test involving CreateBeforeDestroy
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.
2020-03-10 16:16:50 -04:00

8 lines
102 B
HCL

resource "aws_instance" "a" {
require_new = "new"
}
output "ids" {
value = [aws_instance.a.id]
}