mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-15 22:10:37 -04:00
12 lines
158 B
HCL
12 lines
158 B
HCL
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.value
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.resource.value
|
|
}
|