2016-04-28 04:46:46 -05:00
package terraform
import (
"fmt"
2018-05-29 15:13:45 -05:00
"log"
terraform: ugly huge change to weave in new HCL2-oriented types
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.
2018-04-30 12:33:53 -05:00
"github.com/hashicorp/terraform/addrs"
2018-05-29 14:50:31 -05:00
"github.com/hashicorp/terraform/tfdiags"
2016-04-28 04:46:46 -05:00
)
// 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
2016-05-04 14:40:45 -05:00
Id string
2016-04-28 04:46:46 -05:00
Output * [ ] * InstanceState
}
// TODO: test
func ( n * EvalImportState ) Eval ( ctx EvalContext ) ( interface { } , error ) {
provider := * n . Provider
2016-05-04 13:55:30 -05:00
{
// Call pre-import hook
err := ctx . Hook ( func ( h Hook ) ( HookAction , error ) {
2016-05-04 15:02:51 -05:00
return h . PreImportState ( n . Info , n . Id )
2016-05-04 13:55:30 -05:00
} )
if err != nil {
return nil , err
}
}
// Import!
2016-05-04 14:40:45 -05:00
state , err := provider . ImportState ( n . Info , n . Id )
2016-04-28 04:46:46 -05:00
if err != nil {
return nil , fmt . Errorf (
2016-05-04 14:40:45 -05:00
"import %s (id: %s): %s" , n . Info . HumanId ( ) , n . Id , err )
2016-04-28 04:46:46 -05:00
}
2018-05-29 15:13:45 -05:00
for _ , s := range state {
if s == nil {
log . Printf ( "[TRACE] EvalImportState: import %s %q produced a nil state" , n . Info . HumanId ( ) , n . Id )
continue
}
log . Printf ( "[TRACE] EvalImportState: import %s %q produced state for %s with id %q" , n . Info . HumanId ( ) , n . Id , s . Ephemeral . Type , s . ID )
}
2016-04-28 04:46:46 -05:00
if n . Output != nil {
* n . Output = state
}
2016-05-04 13:55:30 -05:00
{
// Call post-import hook
err := ctx . Hook ( func ( h Hook ) ( HookAction , error ) {
return h . PostImportState ( n . Info , state )
} )
if err != nil {
return nil , err
}
}
2016-04-28 04:46:46 -05:00
return nil , nil
}
2016-05-09 15:39:34 -05:00
// EvalImportStateVerify verifies the state after ImportState and
// after the refresh to make sure it is non-nil and valid.
type EvalImportStateVerify struct {
terraform: ugly huge change to weave in new HCL2-oriented types
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.
2018-04-30 12:33:53 -05:00
Addr addrs . ResourceInstance
2016-05-09 15:39:34 -05:00
Id string
State * * InstanceState
}
// TODO: test
func ( n * EvalImportStateVerify ) Eval ( ctx EvalContext ) ( interface { } , error ) {
2018-05-29 14:50:31 -05:00
var diags tfdiags . Diagnostics
2016-05-09 15:39:34 -05:00
state := * n . State
if state . Empty ( ) {
2018-05-29 14:50:31 -05:00
diags = diags . Append ( tfdiags . Sourceless (
tfdiags . Error ,
"Cannot import non-existent remote object" ,
fmt . Sprintf (
"While attempting to import an existing object to %s, the provider detected that no object exists with the id %q. Only pre-existing objects can be imported; check that the id is correct and that it is associated with the provider's configured region or endpoint, or use \"terraform apply\" to create a new remote object for this resource." ,
n . Addr . String ( ) , n . Id ,
) ,
) )
2016-05-09 15:39:34 -05:00
}
2018-05-29 14:50:31 -05:00
return nil , diags . ErrWithWarnings ( )
2016-05-09 15:39:34 -05:00
}