mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
8619f566bb
This validation was lost in the migration of inheritance back to core. Make sure a module configuraton doesn't specifiy a provider that doesn't exist.
11 lines
129 B
HCL
11 lines
129 B
HCL
provider "test" {
|
|
alias = "bar"
|
|
}
|
|
|
|
module "mod" {
|
|
source = "./mod"
|
|
providers = {
|
|
"test" = "test.foo"
|
|
}
|
|
}
|