github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/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 }