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