blob: a816cae90e5bf7c9b2a0dc3f24e24be0654a1608 [file] [log] [blame]
module "grandchild" {
source = "./child"
}
resource "aws_instance" "b" {
ami = "child"
depends_on = ["module.grandchild"]
}