github.com/pulumi/terraform@v1.4.0/pkg/command/testdata/show-json/module-depends-on/main.tf (about)

     1  module "foo" {
     2      source = "./foo"
     3  
     4      depends_on = [
     5          test_instance.test
     6      ]
     7  }
     8  
     9  resource "test_instance" "test" {
    10      ami   = "foo-bar"
    11  }