mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 11:42:58 -06:00
a3403f2766
Due to how often the state and plan types are referenced throughout Terraform, there isn't a great way to switch them out gradually. As a consequence, this huge commit gets us from the old world to a _compilable_ new world, but still has a large number of known test failures due to key functionality being stubbed out. The stubs here are for anything that interacts with providers, since we now need to do the follow-up work to similarly replace the old terraform.ResourceProvider interface with its replacement in the new "providers" package. That work, along with work to fix the remaining failing tests, will follow in subsequent commits. The aim here was to replace all references to terraform.State and its downstream types with states.State, terraform.Plan with plans.Plan, state.State with statemgr.State, and switch to the new implementations of the state and plan file formats. However, due to the number of times those types are used, this also ended up affecting numerous other parts of core such as terraform.Hook, the backend.Backend interface, and most of the CLI commands. Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize in advance to the person who inevitably just found this huge commit while spelunking through the commit history.
73 lines
1.9 KiB
Go
73 lines
1.9 KiB
Go
// Package remotestate implements a Backend for remote state implementations
|
|
// from the state/remote package that also implement a backend schema for
|
|
// configuration.
|
|
package remotestate
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zclconf/go-cty/cty"
|
|
|
|
"github.com/hashicorp/terraform/backend"
|
|
"github.com/hashicorp/terraform/helper/schema"
|
|
"github.com/hashicorp/terraform/state/remote"
|
|
"github.com/hashicorp/terraform/states/statemgr"
|
|
"github.com/hashicorp/terraform/tfdiags"
|
|
)
|
|
|
|
// Backend implements backend.Backend for remote state backends.
|
|
//
|
|
// All exported fields should be set. This struct should only be used
|
|
// by implementers of backends, not by consumers. If you're consuming, please
|
|
// use a higher level package such as Consul backends.
|
|
type Backend struct {
|
|
// Backend should be set to the configuration schema. ConfigureFunc
|
|
// should not be set on the schema.
|
|
*schema.Backend
|
|
|
|
// ConfigureFunc takes the ctx from a schema.Backend and returns a
|
|
// fully configured remote client to use for state operations.
|
|
ConfigureFunc func(ctx context.Context) (remote.Client, error)
|
|
|
|
client remote.Client
|
|
}
|
|
|
|
func (b *Backend) Configure(obj cty.Value) tfdiags.Diagnostics {
|
|
|
|
// Set our configureFunc manually
|
|
b.Backend.ConfigureFunc = func(ctx context.Context) error {
|
|
c, err := b.ConfigureFunc(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Set the client for later
|
|
b.client = c
|
|
return nil
|
|
}
|
|
|
|
return b.Backend.Configure(obj)
|
|
}
|
|
|
|
func (b *Backend) Workspaces() ([]string, error) {
|
|
return nil, backend.ErrNamedStatesNotSupported
|
|
}
|
|
|
|
func (b *Backend) DeleteWorkspace(name string) error {
|
|
return backend.ErrNamedStatesNotSupported
|
|
}
|
|
|
|
func (b *Backend) StateMgr(name string) (statemgr.Full, error) {
|
|
// This shouldn't happen
|
|
if b.client == nil {
|
|
panic("nil remote client")
|
|
}
|
|
|
|
if name != backend.DefaultStateName {
|
|
return nil, backend.ErrNamedStatesNotSupported
|
|
}
|
|
|
|
s := &remote.State{Client: b.client}
|
|
return s, nil
|
|
}
|