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