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