Sign in
third-party-mirror
/
terraform
/
80d4fe1e39aa758c5488269a446e7147cc3ca50f
/
.
/
v1.4.7
/
internal
/
terraform
/
testdata
/
plan-module-cycle
/
main.tf
blob: e9c459721f539554c99a51c0f850e308ae70e86c [
file
] [
log
] [
blame
]
module
"a"
{
source
=
"./child"
in
=
"${aws_instance.b.id}"
}
resource
"aws_instance"
"b"
{}
resource
"aws_instance"
"c"
{
some_input
=
"${module.a.out}"
depends_on
=
[
"aws_instance.b"
]
}