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