opentofu/terraform/testdata/plan-local-value-count/main.tf
2019-06-30 10:16:15 +02:00

9 lines
87 B
HCL

locals {
count = 3
}
resource "test_resource" "foo" {
count = "${local.count}"
}