mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-04 06:20:43 -05:00
12 lines
173 B
HCL
12 lines
173 B
HCL
|
|
variable "input_one" {
|
|
type = string
|
|
}
|
|
|
|
variable "input_two" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = "${var.input_one} - ${var.input_two}"
|
|
}
|