Files
opentf/internal/command/testdata/test/variables/main.tf
Liam Cervante 6882dd9530 testing framework: introduce test command optional flags (#33504)
* testing framework: introduce test command optional flags

* address consistency checks
2023-07-19 10:07:46 +02:00

9 lines
114 B
HCL

variable "input" {
type = string
default = "bar"
}
resource "test_resource" "foo" {
value = var.input
}