mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
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"
|
|
}
|