mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-14 00:13:20 -05:00
* terraform test: move variable evaluation into the terraform test graph * make copyrightfix
16 lines
232 B
HCL
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
|
|
}
|