mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-15 10:03:44 -06:00
There is some additional, early validation on the "count" meta-argument that verifies that only suitable variable types are used, and adding local values to this whitelist was missed in the initial implementation.
9 lines
87 B
HCL
9 lines
87 B
HCL
|
|
locals {
|
|
count = 3
|
|
}
|
|
|
|
resource "test_resource" "foo" {
|
|
count = "${local.count}"
|
|
}
|