terraform/internal/command/testdata/test/pass_with_variables/main.tf

7 lines
93 B
HCL

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