opentofu/terraform/test-fixtures/plan-targeted-module-with-provider/main.tf
Mitchell Hashimoto 9062a1893e
terraform: don't include providers if not targeted
Fixes #12009

This is a simple change similar to #10911 where we need to exclude
providers that aren't targeted.
2017-02-17 09:21:29 -08:00

10 lines
117 B
HCL

module "child1" {
source = "./child1"
key = "value"
}
module "child2" {
source = "./child2"
key = "value"
}