github.com/rstandt/terraform@v0.12.32-0.20230710220336-b1063613405c/configs/configupgrade/upgrader.go (about) 1 package configupgrade 2 3 import ( 4 "github.com/hashicorp/terraform/providers" 5 "github.com/hashicorp/terraform/terraform" 6 ) 7 8 // Upgrader is the main type in this package, containing all of the 9 // dependencies that are needed to perform upgrades. 10 type Upgrader struct { 11 Providers providers.Resolver 12 Provisioners map[string]terraform.ProvisionerFactory 13 }