github.com/justnom/terraform@v0.5.4-0.20180524223219-170a1530d1ca/terraform/test-fixtures/apply-resource-depends-on-module-deep/main.tf (about) 1 module "child" { 2 source = "./child" 3 } 4 5 resource "aws_instance" "a" { 6 depends_on = ["module.child"] 7 }