github.com/vic3lord/terraform@v0.8.0-rc1.0.20170626102919-16c6dd2cb372/terraform/test-fixtures/graph-builder-apply-target-module/main.tf (about)

     1  resource "null_resource" "foo" {}
     2  
     3  module "child1" {
     4    source = "./child1"
     5    instance_id = "${null_resource.foo.id}"
     6  }
     7  
     8  module "child2" {
     9    source = "./child2"
    10  }