mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-03 20:57:09 -06:00
c937c06a03
Due to how deeply the configuration types go into Terraform Core, there isn't a great way to switch out to HCL2 gradually. As a consequence, this huge commit gets us from the old state to a _compilable_ new state, but does not yet attempt to fix any tests and has a number of known missing parts and bugs. We will continue to iterate on this in forthcoming commits, heading back towards passing tests and making Terraform fully-functional again. The three main goals here are: - Use the configuration models from the "configs" package instead of the older models in the "config" package, which is now deprecated and preserved only to help us write our migration tool. - Do expression inspection and evaluation using the functionality of the new "lang" package, instead of the Interpolator type and related functionality in the main "terraform" package. - Represent addresses of various objects using types in the addrs package, rather than hand-constructed strings. This is not critical to support the above, but was a big help during the implementation of these other points since it made it much more explicit what kind of address is expected in each context. Since our new packages are built to accommodate some future planned features that are not yet implemented (e.g. the "for_each" argument on resources, "count"/"for_each" on modules), and since there's still a fair amount of functionality still using old-style APIs, there is a moderate amount of shimming here to connect new assumptions with old, hopefully in a way that makes it easier to find and eliminate these shims later. I apologize in advance to the person who inevitably just found this huge commit while spelunking through the commit history.
79 lines
1.7 KiB
Go
79 lines
1.7 KiB
Go
package terraform
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform/addrs"
|
|
)
|
|
|
|
// EvalImportState is an EvalNode implementation that performs an
|
|
// ImportState operation on a provider. This will return the imported
|
|
// states but won't modify any actual state.
|
|
type EvalImportState struct {
|
|
Provider *ResourceProvider
|
|
Info *InstanceInfo
|
|
Id string
|
|
Output *[]*InstanceState
|
|
}
|
|
|
|
// TODO: test
|
|
func (n *EvalImportState) Eval(ctx EvalContext) (interface{}, error) {
|
|
provider := *n.Provider
|
|
|
|
{
|
|
// Call pre-import hook
|
|
err := ctx.Hook(func(h Hook) (HookAction, error) {
|
|
return h.PreImportState(n.Info, n.Id)
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Import!
|
|
state, err := provider.ImportState(n.Info, n.Id)
|
|
if err != nil {
|
|
return nil, fmt.Errorf(
|
|
"import %s (id: %s): %s", n.Info.HumanId(), n.Id, err)
|
|
}
|
|
|
|
if n.Output != nil {
|
|
*n.Output = state
|
|
}
|
|
|
|
{
|
|
// Call post-import hook
|
|
err := ctx.Hook(func(h Hook) (HookAction, error) {
|
|
return h.PostImportState(n.Info, state)
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
// EvalImportStateVerify verifies the state after ImportState and
|
|
// after the refresh to make sure it is non-nil and valid.
|
|
type EvalImportStateVerify struct {
|
|
Addr addrs.ResourceInstance
|
|
Id string
|
|
State **InstanceState
|
|
}
|
|
|
|
// TODO: test
|
|
func (n *EvalImportStateVerify) Eval(ctx EvalContext) (interface{}, error) {
|
|
state := *n.State
|
|
if state.Empty() {
|
|
return nil, fmt.Errorf(
|
|
"import %s (id: %s): Terraform detected a resource with this ID doesn't\n"+
|
|
"exist. Please verify the ID is correct. You cannot import non-existent\n"+
|
|
"resources using Terraform import.",
|
|
n.Addr.String(),
|
|
n.Id)
|
|
}
|
|
|
|
return nil, nil
|
|
}
|