mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-27 12:54:12 -04:00
12 lines
159 B
HCL
12 lines
159 B
HCL
|
|
variable "input" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.input
|
|
}
|
|
|
|
output "output" {
|
|
value = test_resource.resource.value
|
|
}
|