mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-12 23:43:17 -05:00
9 lines
95 B
Terraform
9 lines
95 B
Terraform
|
|
variable "foo" {
|
||
|
|
default = {}
|
||
|
|
}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
foo = var.foo
|
||
|
|
}
|