blob: 49b5720c2d5cd0fd4e848ea8e094c0d19afb0bf4 [file] [log] [blame] [edit]
variable "input_one" {
type = string
}
variable "input_two" {
type = string
}
resource "test_resource" "resource" {
value = "${var.input_one} - ${var.input_two}"
}
output "response" {
value = test_resource.resource.value
}