Files
opentf/internal/configs/testdata/valid-modules/with-tests-nested/main.tf
Liam Cervante cad9aa9025 [Testing Framework] Add test file HCL configuration and parser functionality (#33325)
* Add test structure to views package for rendering test output

* Add test file HCL configuration and parser functionality

* address comments
2023-06-22 17:03:37 +02:00

12 lines
124 B
HCL

variable "input" {
type = string
}
resource "foo_resource" "a" {
value = var.input
}
resource "bar_resource" "c" {}