mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
0a342e8dc2
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 "null_resource" "foo" {
|
|
count = "${local.count}"
|
|
}
|