blob: 1a7862b0a3f02d0974fc3b4e79d4f98a3575a36a [file] [log] [blame]
module "child" {
source = "./child"
}
resource "aws_instance" "a" {
ami = "parent"
depends_on = ["module.child"]
}