terraform/internal/command/testdata/test/variable_references/main.tf
Liam Cervante 53afa2cd2f
terraform test: move variable evaluation into the terraform test graph (#37205)
* terraform test: move variable evaluation into the terraform test graph

* make copyrightfix
2025-06-06 10:11:35 +02:00

16 lines
232 B
HCL

variable "input_one" {
type = string
}
variable "input_two" {
type = string
}
resource "test_resource" "resource" {
value = "${var.input_one} - ${var.input_two}"
}
output "value" {
value = test_resource.resource.value
}