9 lines
125 B
Terraform
9 lines
125 B
Terraform
|
variable "v" {
|
||
|
description = "in child_ba module"
|
||
|
default = ""
|
||
|
}
|
||
|
|
||
|
output "hello" {
|
||
|
value = "Hello from child_a!"
|
||
|
}
|