mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-22 14:00:57 -05:00
15 lines
149 B
HCL
15 lines
149 B
HCL
|
|
variable "value" {
|
|
type = string
|
|
}
|
|
|
|
module "child" {
|
|
source = "./other"
|
|
|
|
value = var.value
|
|
}
|
|
|
|
output "value" {
|
|
value = module.child.value
|
|
}
|