mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-24 11:24:16 -04:00
8 lines
93 B
HCL
8 lines
93 B
HCL
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
output "value" {
|
|
type = string
|
|
value = var.value
|
|
}
|