terraform/config/testdata/validate-missing-provider/main.tf

11 lines
129 B
HCL

provider "test" {
alias = "bar"
}
module "mod" {
source = "./mod"
providers = {
"test" = "test.foo"
}
}