Files
opentf/internal/command/testdata/test/invalid/main.tf
Liam Cervante e1019b3641 testing framework: validate the configuration before terraform test (#33559)
* testing framework: call validate on the configuration before running terraform test

* address comments

* make tests pass after merge

* fix tests
2023-07-26 10:56:44 +02:00

9 lines
108 B
HCL

locals {
my_value = "Hello, world!"
}
resource "test_resource" "example" {
value = local.my_value
}