mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-24 16:10:46 -06:00
10 lines
117 B
Terraform
10 lines
117 B
Terraform
|
module "child1" {
|
||
|
source = "./child1"
|
||
|
key = "value"
|
||
|
}
|
||
|
|
||
|
module "child2" {
|
||
|
source = "./child2"
|
||
|
key = "value"
|
||
|
}
|