opentofu/configs/configupgrade/upgrader.go
Martin Atkins 44bc7519a6 terraform: More wiring in of new provider types
This doesn't actually work yet, but it builds and then panics in a pretty
satisfying way.
2018-10-16 19:12:54 -07:00

14 lines
356 B
Go

package configupgrade
import (
"github.com/hashicorp/terraform/providers"
"github.com/hashicorp/terraform/terraform"
)
// Upgrader is the main type in this package, containing all of the
// dependencies that are needed to perform upgrades.
type Upgrader struct {
Providers providers.Resolver
Provisioners map[string]terraform.ProvisionerFactory
}