github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/command/testdata/modules/main.tf (about)

     1  locals {
     2    foo = 3
     3  }
     4  
     5  module "child" {
     6    source = "./child"
     7  }
     8  module "count_child" {
     9    count = 1
    10    source = "./child"
    11  }