github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/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    depends_on = [null_resource.test]
    12  }
    13  resource "null_resource" "test" {}