github.com/kanishk98/terraform@v1.3.0-dev.0.20220917174235-661ca8088a6a/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  }