terraform: test for referencetransform for modules
This commit is contained in:
parent
994f5ce773
commit
21888b1227
|
@ -50,6 +50,15 @@ func TestApplyGraphBuilder(t *testing.T) {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"aws_instance.other": &InstanceDiff{
|
||||||
|
Attributes: map[string]*ResourceAttrDiff{
|
||||||
|
"name": &ResourceAttrDiff{
|
||||||
|
Old: "",
|
||||||
|
New: "foo",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -87,11 +96,14 @@ aws_instance.other
|
||||||
module.child.aws_instance.create
|
module.child.aws_instance.create
|
||||||
module.child.provider.aws
|
module.child.provider.aws
|
||||||
provisioner.exec
|
provisioner.exec
|
||||||
|
module.child.aws_instance.other
|
||||||
|
module.child.aws_instance.create
|
||||||
|
module.child.provider.aws
|
||||||
module.child.provider.aws
|
module.child.provider.aws
|
||||||
provider.aws
|
provider.aws
|
||||||
provider.aws
|
provider.aws
|
||||||
provisioner.exec
|
provisioner.exec
|
||||||
root
|
root
|
||||||
aws_instance.other
|
aws_instance.other
|
||||||
module.child.aws_instance.create
|
module.child.aws_instance.other
|
||||||
`
|
`
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
resource "aws_instance" "create" {
|
resource "aws_instance" "create" {
|
||||||
provisioner "exec" {}
|
provisioner "exec" {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
resource "aws_instance" "other" {
|
||||||
|
value = "${aws_instance.create.id}"
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue