mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
This is added just trying to reproduce a crash I saw. It passes so adding it to the master tests.
6 lines
111 B
HCL
6 lines
111 B
HCL
resource "aws_instance" "bar" {
|
|
count = 2
|
|
foo = "bar"
|
|
lifecycle { create_before_destroy = true }
|
|
}
|