blob: ca5fd528eccdd18cf3b78e440cd4e74e6f1d2a13 [file] [log] [blame]
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package providers
import (
terraformProvider "github.com/hashicorp/terraform/internal/builtin/providers/terraform"
provider "github.com/hashicorp/terraform/internal/providers"
)
func BuiltInProviders() map[string]provider.Factory {
return map[string]provider.Factory{
"terraform": func() (provider.Interface, error) {
return terraformProvider.NewProvider(), nil
},
}
}