mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-18 12:42:58 -06:00
9 lines
112 B
Terraform
9 lines
112 B
Terraform
|
variable "v" {
|
||
|
description = "in root module"
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
module "child_a" {
|
||
|
source = "child_a"
|
||
|
}
|