mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-22 19:01:19 -04:00
7 lines
91 B
HCL
7 lines
91 B
HCL
variable "value" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
value = "${var.value}"
|
|
}
|