mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
16 lines
235 B
HCL
16 lines
235 B
HCL
|
|
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
|
|
}
|