mirror of
https://github.com/hashicorp/terraform.git
synced 2026-04-28 01:27:46 -04:00
7 lines
79 B
Terraform
7 lines
79 B
Terraform
|
|
variable "foo" {}
|
||
|
|
|
||
|
|
module "child" {
|
||
|
|
source = "./child"
|
||
|
|
foo = var.foo
|
||
|
|
}
|