mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
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>
7 lines
93 B
HCL
7 lines
93 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
resource "testing_resource" "hello" {
|
|
id = var.name
|
|
}
|