github.com/gettyimages/terraform@v0.7.6-0.20161219132226-dc052c5707a3/terraform/test-fixtures/graph-builder-apply-module-destroy/main.tf (about)

     1  variable "input" { default = "value" }
     2  
     3  module "A" {
     4      source = "./A"
     5      input  = "${var.input}"
     6  }
     7  
     8  module "B" {
     9      source = "./A"
    10      input  = "${module.A.output}"
    11  }