github.com/joshgarnett/terraform@v0.5.4-0.20160219181435-92dc20bb3594/terraform/test-fixtures/graph-depends-on-count/main.tf (about) 1 resource "aws_instance" "web" {} 2 3 resource "aws_instance" "db" { 4 depends_on = ["aws_instance.web"] 5 count = 2 6 }