mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
9 lines
87 B
HCL
9 lines
87 B
HCL
|
|
locals {
|
|
count = 3
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
count = "${local.count}"
|
|
}
|