opentofu/internal/tofu/testdata/plan-cbd-maintain-root/main.tf
2023-09-20 15:16:53 +03:00

20 lines
256 B
HCL

resource "aws_instance" "foo" {
count = "2"
lifecycle {
create_before_destroy = true
}
}
resource "aws_instance" "bar" {
count = "2"
lifecycle {
create_before_destroy = true
}
}
output "out" {
value = "${aws_instance.foo.0.id}"
}