core: fix TestContext2Apply_resourceDependsOnModuleGrandchild
Some changes made to the test mocks and fixtures have changed the expected output of this test to include some additional attributes.
This commit is contained in:
parent
5faf027ea7
commit
e3f2c2c03f
|
@ -811,6 +811,8 @@ const testTerraformApplyResourceDependsOnModuleDeepStr = `
|
|||
aws_instance.a:
|
||||
ID = foo
|
||||
provider = provider.aws
|
||||
ami = parent
|
||||
type = aws_instance
|
||||
|
||||
Dependencies:
|
||||
module.child
|
||||
|
@ -819,6 +821,8 @@ module.child.grandchild:
|
|||
aws_instance.c:
|
||||
ID = foo
|
||||
provider = provider.aws
|
||||
ami = grandchild
|
||||
type = aws_instance
|
||||
`
|
||||
|
||||
const testTerraformApplyResourceDependsOnModuleInModuleStr = `
|
||||
|
|
Loading…
Reference in New Issue