mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
The interpolation going into a module variable here will be valid after Refresh, but Refresh doesn't happen for the Input phase.
6 lines
56 B
HCL
6 lines
56 B
HCL
variable "in" {}
|
|
|
|
output "out" {
|
|
value = "${var.in}"
|
|
}
|