mirror of https://github.com/hashicorp/terraform
Merge pull request #1487 from hashicorp/b-provider-vars-inherit
terraform: fix provider config inheritance during inputpull/1490/head
commit
6761424309
@ -0,0 +1 @@
|
||||
resource "aws_instance" "foo" { }
|
||||
@ -0,0 +1,7 @@
|
||||
provider "aws" {
|
||||
access_key = "abc123"
|
||||
}
|
||||
|
||||
module "child" {
|
||||
source = "./child"
|
||||
}
|
||||
Loading…
Reference in new issue