github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/terraform/test-fixtures/validate-module-deps-cycle/main.tf (about)

     1  module "a" {
     2    source = "./a"
     3  }
     4  
     5  module "b" {
     6    source = "./b"
     7    input = "${module.a.output}"
     8  }