opentofu/terraform/test-fixtures/apply-cbd-count/main.tf
Mitchell Hashimoto 3bf93501a1
terraform: test applying tainted + deposed (passes)
This is added just trying to reproduce a crash I saw. It passes so
adding it to the master tests.
2016-11-28 14:29:38 -08:00

6 lines
111 B
HCL

resource "aws_instance" "bar" {
count = 2
foo = "bar"
lifecycle { create_before_destroy = true }
}