mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-26 13:03:36 -04:00
9 lines
87 B
HCL
9 lines
87 B
HCL
|
|
locals {
|
|
count = 3
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
count = "${local.count}"
|
|
}
|