module "child" { source = "./child" } resource "aws_instance" "a" { ami = "parent" depends_on = ["module.child"] }