mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-23 10:00:50 -05:00
6 lines
79 B
HCL
6 lines
79 B
HCL
variable "foo" {}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
foo = var.foo
|
|
}
|