mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-27 12:54:12 -04:00
11 lines
140 B
HCL
11 lines
140 B
HCL
output "out" {
|
|
value = "module-output-${plantimestamp()}"
|
|
}
|
|
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
output "input" {
|
|
value = var.value
|
|
}
|