mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-26 16:36:26 -06:00
8 lines
90 B
Terraform
8 lines
90 B
Terraform
|
resource "test_thing" "zero" {
|
||
|
count = 0
|
||
|
}
|
||
|
|
||
|
resource "test_thing" "one" {
|
||
|
count = 1
|
||
|
}
|