opentofu/terraform/test-fixtures/input-provider-with-vars-and-module/main.tf
Paul Hinze d1b40de242 terraform: fix provider config inheritance during input
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.
2015-04-10 16:28:47 -05:00

8 lines
84 B
HCL

provider "aws" {
access_key = "abc123"
}
module "child" {
source = "./child"
}