github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/config/testdata/validate-missing-provider/main.tf (about)

     1  provider "test" {
     2      alias = "bar"
     3  }
     4  
     5  module "mod" {
     6      source = "./mod"
     7      providers = {
     8          "test" = "test.foo"
     9      }
    10  }