10 lines
115 B
Terraform
10 lines
115 B
Terraform
|
|
||
|
variable "v" {
|
||
|
description = "in root module"
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
module "child_a" {
|
||
|
source = "./child_a"
|
||
|
}
|