terraform/internal/stacks/stackruntime/testdata/mainbundle/test/invalid-local/invalid-local.tf
Matej Risek 768b7bd0bc Add local values walk to walk_dynamic
This helps us catch diagnostics in locals that only happen during evaluation

Co-authored-by: Mutahhir Hayat <mutahhir.hayat@hashicorp.com>
Co-authored-by: Matej Risek <matej.risek@hashicorp.com>
2025-12-11 10:42:52 +01:00

7 lines
93 B
HCL

variable "name" {
type = string
}
resource "testing_resource" "hello" {
id = var.name
}