mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-16 02:23:39 -06:00
Fixes #12009 This is a simple change similar to #10911 where we need to exclude providers that aren't targeted.
10 lines
117 B
HCL
10 lines
117 B
HCL
module "child1" {
|
|
source = "./child1"
|
|
key = "value"
|
|
}
|
|
|
|
module "child2" {
|
|
source = "./child2"
|
|
key = "value"
|
|
}
|