mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
8929eca405
BuildConfig creates a module tree by recursively walking through module calls in the root module and any descendent modules. This is intended to be used both for the simple case of loading already-installed modules and the more complex case of installing modules inside "terraform init", both of which will be dealt with in a separate package.
10 lines
87 B
HCL
10 lines
87 B
HCL
|
|
module "child_a" {
|
|
source = "child_a"
|
|
}
|
|
|
|
module "child_b" {
|
|
source = "child_b"
|
|
}
|
|
|