9 lines
112 B
Terraform
9 lines
112 B
Terraform
|
variable "v" {
|
||
|
description = "in root module"
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
module "child_a" {
|
||
|
source = "child_a"
|
||
|
}
|