Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
apply-resource-depends-on-module-in-module
/
child
/
main.tf
blob: a816cae90e5bf7c9b2a0dc3f24e24be0654a1608 [
file
] [
log
] [
blame
]
module
"grandchild"
{
source
=
"./child"
}
resource
"aws_instance"
"b"
{
ami
=
"child"
depends_on
=
[
"module.grandchild"
]
}