github.com/jaredpalmer/terraform@v1.1.0-alpha20210908.0.20210911170307-88705c943a03/internal/configs/testdata/valid-modules/override-module/primary.tf (about)

     1  
     2  module "example" {
     3    source = "./example2"
     4  
     5    kept = "primary kept"
     6    foo  = "primary foo"
     7  
     8    providers = {
     9      test = test.foo
    10    }
    11  }