terraform/internal/command/testdata/dynamic-module-sources/nested-module-with-variable-source/main.tf

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

10 lines
143 B
Terraform
Raw Permalink Normal View History

2026-02-27 10:43:11 -05:00
variable "child_name" {
type = string
const = true
}
module "parent" {
source = "./modules/parent"
child_name = var.child_name
}