opentofu/terraform/testdata/apply-orphan-resource/main.tf
2019-06-30 10:16:15 +02:00

8 lines
90 B
HCL

resource "test_thing" "zero" {
count = 0
}
resource "test_thing" "one" {
count = 1
}