mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -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
|
|
}
|