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