resource "test_instance" "foo" {
depends_on = [
test_instance.bar,
test_instance.bar[0],
data.test_instance.baz,
module.foo.bar,
module.foo,
]
}
output "foo" {
value = "a"
depends_on = [test_instance.foo]