mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-15 19:22:46 -06:00
ddf794b7f7
The flattening process was not properly drawing dependencies between provider nodes in modules and their parent provider nodes. Fixes #2832 Fixes #4443 Fixes #4865
8 lines
76 B
HCL
8 lines
76 B
HCL
provider "aws" {
|
|
value = "foo"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
}
|