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