mirror of https://github.com/hashicorp/terraform
There was no test checking that Close wsa called on the mock provider. This fails now since the CloseProviderTransformer isn't using the fully resolved provider name.pull/17035/head
parent
4700a86ee6
commit
ba749db9ed
@ -0,0 +1,3 @@
|
||||
module "mod" {
|
||||
source = "./mod"
|
||||
}
|
||||
@ -0,0 +1,7 @@
|
||||
provider "aws" {
|
||||
alias = "mod"
|
||||
}
|
||||
|
||||
resource "aws_instance" "bar" {
|
||||
provider = "aws.mod"
|
||||
}
|
||||
Loading…
Reference in new issue