mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-16 18:35:03 -06:00
10 lines
117 B
Terraform
10 lines
117 B
Terraform
|
module "child1" {
|
||
|
source = "./child1"
|
||
|
key = "value"
|
||
|
}
|
||
|
|
||
|
module "child2" {
|
||
|
source = "./child2"
|
||
|
key = "value"
|
||
|
}
|