mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-29 10:21:01 -06:00
d1b40de242
The provider config was not being properly merged across module boundaries during the Input walk over the graph, so when a provider was configured at the top level, resources in modules could improperly trigger a request for input for a provider attribute that's already defined.
8 lines
84 B
HCL
8 lines
84 B
HCL
provider "aws" {
|
|
access_key = "abc123"
|
|
}
|
|
|
|
module "child" {
|
|
source = "./child"
|
|
}
|