mirror of https://github.com/hashicorp/terraform
Fixes #11212 The import graph builder was missing the transform to setup links to parent providers, so provider inheritance didn't work properly. This adds that. This also removes the `PruneProviderTransform` since that has no value in this graph since we'll never add an unused provider.pull/11393/head
parent
f84fd39ef9
commit
b2fb3b1d0f
@ -0,0 +1 @@
|
||||
# Empty
|
||||
@ -0,0 +1,5 @@
|
||||
provider "aws" {
|
||||
foo = "bar"
|
||||
}
|
||||
|
||||
module "child" { source = "./child" }
|
||||
Loading…
Reference in new issue