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