github.com/anfernee/terraform@v0.6.16-0.20160430000239-06e5085a92f2/terraform/test-fixtures/graph-depends-on/main.tf (about)

     1  resource "aws_instance" "web" {}
     2  
     3  resource "aws_instance" "db" {
     4  	depends_on = ["aws_instance.web"]
     5  }