mirror of
https://github.com/opentofu/opentofu.git
synced 2026-05-28 04:15:54 -04:00
14 lines
149 B
HCL
14 lines
149 B
HCL
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
module "child" {
|
|
source = "./other"
|
|
|
|
value = var.value
|
|
}
|
|
|
|
output "value" {
|
|
value = module.child.value
|
|
}
|