terraform/internal/command/testdata/import-module-var-file/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
79 B
Terraform
Raw Permalink Normal View History

2020-06-12 12:35:30 -04:00
variable "foo" {}
module "child" {
source = "./child"
foo = var.foo
}