Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
transform-targets-downstream
/
child
/
child.tf
blob: 6548b794930b5cd8a0712d222b478bcd9c8922f4 [
file
] [
log
] [
blame
]
resource
"aws_instance"
"foo"
{
}
module
"grandchild"
{
source
=
"./grandchild"
}
output
"id"
{
value
=
"${aws_instance.foo.id}"
}
output
"grandchild_id"
{
value
=
"${module.grandchild.id}"
}