mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-10 03:01:56 -04:00
13 lines
158 B
HCL
13 lines
158 B
HCL
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
resource "test_resource" "resource" {
|
|
value = var.value
|
|
}
|
|
|
|
output "value" {
|
|
value = test_resource.resource.value
|
|
}
|