2024-02-08 03:48:59 -06:00
|
|
|
// Copyright (c) The OpenTofu Authors
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
2023-05-02 10:33:06 -05:00
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-09-20 07:16:53 -05:00
|
|
|
package tofu
|
2016-11-05 18:26:12 -05:00
|
|
|
|
|
|
|
import (
|
2022-06-06 13:46:59 -05:00
|
|
|
"log"
|
|
|
|
|
2023-09-20 06:35:35 -05:00
|
|
|
"github.com/opentofu/opentofu/internal/addrs"
|
|
|
|
"github.com/opentofu/opentofu/internal/configs"
|
|
|
|
"github.com/opentofu/opentofu/internal/dag"
|
|
|
|
"github.com/opentofu/opentofu/internal/states"
|
|
|
|
"github.com/opentofu/opentofu/internal/tfdiags"
|
2016-11-05 18:26:12 -05:00
|
|
|
)
|
|
|
|
|
2022-08-17 13:46:02 -05:00
|
|
|
// PlanGraphBuilder is a GraphBuilder implementation that builds a graph for
|
|
|
|
// planning and for other "plan-like" operations which don't require an
|
|
|
|
// already-calculated plan as input.
|
2016-11-05 18:26:12 -05:00
|
|
|
//
|
2022-08-17 13:46:02 -05:00
|
|
|
// Unlike the apply graph builder, this graph builder:
|
2016-11-05 18:26:12 -05:00
|
|
|
//
|
2022-08-17 13:46:02 -05:00
|
|
|
// - Makes its decisions primarily based on the given configuration, which
|
|
|
|
// represents the desired state.
|
2016-11-05 18:26:12 -05:00
|
|
|
//
|
2022-08-17 13:46:02 -05:00
|
|
|
// - Ignores certain lifecycle concerns like create_before_destroy, because
|
|
|
|
// those are only important once we already know what action we're planning
|
|
|
|
// to take against a particular resource instance.
|
2016-11-05 18:26:12 -05:00
|
|
|
type PlanGraphBuilder 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
|
|
|
// Config is the configuration tree to build a plan from.
|
|
|
|
Config *configs.Config
|
2016-11-05 18:26:12 -05:00
|
|
|
|
|
|
|
// State is the current state
|
terraform: Ugly huge change to weave in new State and Plan types
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.
2018-08-14 16:24:45 -05:00
|
|
|
State *states.State
|
2016-11-05 18:26:12 -05:00
|
|
|
|
core: Handle root and child module input variables consistently
Previously we had a significant discrepancy between these two situations:
we wrote the raw root module variables directly into the EvalContext and
then applied type conversions only at expression evaluation time, while
for child modules we converted and validated the values while visiting
the variable graph node and wrote only the _final_ value into the
EvalContext.
This confusion seems to have been the root cause for #29899, where
validation rules for root module variables were being applied at the wrong
point in the process, prior to type conversion.
To fix that bug and also make similar mistakes less likely in the future,
I've made the root module variable handling more like the child module
variable handling in the following ways:
- The "raw value" (exactly as given by the user) lives only in the graph
node representing the variable, which mirrors how the _expression_
for a child module variable lives in its graph node. This means that
the flow for the two is the same except that there's no expression
evaluation step for root module variables, because they arrive as
constant values from the caller.
- The set of variable values in the EvalContext is always only "final"
values, after type conversion is complete. That in turn means we no
longer need to do "just in time" conversion in
evaluationStateData.GetInputVariable, and can just return the value
exactly as stored, which is consistent with how we handle all other
references between objects.
This diff is noisier than I'd like because of how much it takes to wire
a new argument (the raw variable values) through to the plan graph builder,
but those changes are pretty mechanical and the interesting logic lives
inside the plan graph builder itself, in NodeRootVariable, and
the shared helper functions in eval_variable.go.
While here I also took the opportunity to fix a historical API wart in
EvalContext, where SetModuleCallArguments was built to take a set of
variable values all at once but our current caller always calls with only
one at a time. That is now just SetModuleCallArgument singular, to match
with the new SetRootModuleArgument to deal with root module variables.
2021-11-10 19:29:45 -06:00
|
|
|
// RootVariableValues are the raw input values for root input variables
|
|
|
|
// given by the caller, which we'll resolve into final values as part
|
|
|
|
// of the plan walk.
|
|
|
|
RootVariableValues InputValues
|
|
|
|
|
2021-08-31 12:58:05 -05:00
|
|
|
// Plugins is a library of plug-in components (providers and
|
2018-05-02 22:16:22 -05:00
|
|
|
// provisioners) available for use.
|
2021-08-31 12:58:05 -05:00
|
|
|
Plugins *contextPlugins
|
2017-01-25 14:24:48 -06:00
|
|
|
|
2016-11-07 16:09:11 -06:00
|
|
|
// Targets are resources to target
|
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
|
|
|
Targets []addrs.Targetable
|
2016-11-07 16:09:11 -06:00
|
|
|
|
2021-04-06 19:37:38 -05:00
|
|
|
// ForceReplace are resource instances where if we would normally have
|
|
|
|
// generated a NoOp or Update action then we'll force generating a replace
|
|
|
|
// action instead. Create and Delete actions are not affected.
|
|
|
|
ForceReplace []addrs.AbsResourceInstance
|
|
|
|
|
2020-09-23 10:05:09 -05:00
|
|
|
// skipRefresh indicates that we should skip refreshing managed resources
|
|
|
|
skipRefresh bool
|
|
|
|
|
2022-11-11 10:46:56 -06:00
|
|
|
// preDestroyRefresh indicates that we are executing the refresh which
|
|
|
|
// happens immediately before a destroy plan, which happens to use the
|
|
|
|
// normal planing mode so skipPlanChanges cannot be set.
|
|
|
|
preDestroyRefresh bool
|
|
|
|
|
2021-04-05 19:05:57 -05:00
|
|
|
// skipPlanChanges indicates that we should skip the step of comparing
|
|
|
|
// prior state with configuration and generating planned changes to
|
|
|
|
// resource instances. (This is for the "refresh only" planning mode,
|
|
|
|
// where we _only_ do the refresh step.)
|
|
|
|
skipPlanChanges bool
|
|
|
|
|
2022-05-27 09:59:11 -05:00
|
|
|
ConcreteProvider ConcreteProviderNodeFunc
|
|
|
|
ConcreteResource ConcreteResourceNodeFunc
|
|
|
|
ConcreteResourceInstance ConcreteResourceInstanceNodeFunc
|
|
|
|
ConcreteResourceOrphan ConcreteResourceInstanceNodeFunc
|
|
|
|
ConcreteResourceInstanceDeposed ConcreteResourceInstanceDeposedNodeFunc
|
|
|
|
ConcreteModule ConcreteModuleNodeFunc
|
|
|
|
|
2022-06-06 13:46:59 -05:00
|
|
|
// Plan Operation this graph will be used for.
|
|
|
|
Operation walkOperation
|
|
|
|
|
2023-06-26 10:42:53 -05:00
|
|
|
// ExternalReferences allows the external caller to pass in references to
|
|
|
|
// nodes that should not be pruned even if they are not referenced within
|
|
|
|
// the actual graph.
|
|
|
|
ExternalReferences []*addrs.Reference
|
|
|
|
|
2022-06-06 13:46:59 -05:00
|
|
|
// ImportTargets are the list of resources to import.
|
|
|
|
ImportTargets []*ImportTarget
|
2023-05-12 17:05:00 -05:00
|
|
|
|
2024-02-21 02:31:44 -06:00
|
|
|
// EndpointsToRemove are the list of resources and modules to forget from
|
|
|
|
// the state.
|
|
|
|
EndpointsToRemove []addrs.ConfigRemovable
|
|
|
|
|
2023-09-26 12:09:27 -05:00
|
|
|
// GenerateConfig tells OpenTofu where to write and generated config for
|
2023-05-24 06:58:26 -05:00
|
|
|
// any import targets that do not already have configuration.
|
|
|
|
//
|
|
|
|
// If empty, then config will not be generated.
|
|
|
|
GenerateConfigPath string
|
2016-11-05 18:26:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// See GraphBuilder
|
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
|
|
|
func (b *PlanGraphBuilder) Build(path addrs.ModuleInstance) (*Graph, tfdiags.Diagnostics) {
|
2022-06-06 13:46:59 -05:00
|
|
|
log.Printf("[TRACE] building graph for %s", b.Operation)
|
2016-11-05 18:26:12 -05:00
|
|
|
return (&BasicGraphBuilder{
|
2022-02-03 13:16:25 -06:00
|
|
|
Steps: b.Steps(),
|
|
|
|
Name: "PlanGraphBuilder",
|
2016-11-05 18:26:12 -05:00
|
|
|
}).Build(path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// See GraphBuilder
|
|
|
|
func (b *PlanGraphBuilder) Steps() []GraphTransformer {
|
2022-06-06 13:46:59 -05:00
|
|
|
switch b.Operation {
|
|
|
|
case walkPlan:
|
|
|
|
b.initPlan()
|
|
|
|
case walkPlanDestroy:
|
|
|
|
b.initDestroy()
|
|
|
|
case walkValidate:
|
|
|
|
b.initValidate()
|
|
|
|
case walkImport:
|
|
|
|
b.initImport()
|
|
|
|
default:
|
|
|
|
panic("invalid plan operation: " + b.Operation.String())
|
|
|
|
}
|
2018-09-20 14:30:52 -05:00
|
|
|
|
2016-11-05 18:26:12 -05:00
|
|
|
steps := []GraphTransformer{
|
|
|
|
// Creates all the resources represented in the config
|
|
|
|
&ConfigTransformer{
|
2022-06-01 14:29:59 -05:00
|
|
|
Concrete: b.ConcreteResource,
|
|
|
|
Config: b.Config,
|
2022-06-06 13:46:59 -05:00
|
|
|
|
|
|
|
// Resources are not added from the config on destroy.
|
|
|
|
skip: b.Operation == walkPlanDestroy,
|
|
|
|
|
|
|
|
importTargets: b.ImportTargets,
|
2023-05-11 01:38:37 -05:00
|
|
|
|
|
|
|
// We only want to generate config during a plan operation.
|
2023-05-24 06:58:26 -05:00
|
|
|
generateConfigPathForImportTargets: b.GenerateConfigPath,
|
2016-11-05 18:26:12 -05:00
|
|
|
},
|
|
|
|
|
2020-10-06 16:39:53 -05:00
|
|
|
// Add dynamic values
|
2023-11-08 17:07:09 -06:00
|
|
|
&RootVariableTransformer{Config: b.Config, RawValues: b.RootVariableValues},
|
|
|
|
&ModuleVariableTransformer{Config: b.Config},
|
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
|
|
|
&LocalTransformer{Config: b.Config},
|
2022-05-27 09:59:11 -05:00
|
|
|
&OutputTransformer{
|
2022-10-19 14:15:40 -05:00
|
|
|
Config: b.Config,
|
2022-11-11 10:46:56 -06:00
|
|
|
RefreshOnly: b.skipPlanChanges || b.preDestroyRefresh,
|
2023-05-22 11:21:30 -05:00
|
|
|
Destroying: b.Operation == walkPlanDestroy,
|
2022-09-28 12:49:57 -05:00
|
|
|
|
|
|
|
// NOTE: We currently treat anything built with the plan graph
|
|
|
|
// builder as "planning" for our purposes here, because we share
|
|
|
|
// the same graph node implementation between all of the walk
|
|
|
|
// types and so the pre-planning walks still think they are
|
|
|
|
// producing a plan even though we immediately discard it.
|
|
|
|
Planning: true,
|
2022-05-27 09:59:11 -05:00
|
|
|
},
|
2016-11-05 18:26:12 -05:00
|
|
|
|
2023-03-23 10:07:31 -05:00
|
|
|
// Add nodes and edges for the check block assertions. Check block data
|
|
|
|
// sources were added earlier.
|
|
|
|
&checkTransformer{
|
|
|
|
Config: b.Config,
|
|
|
|
Operation: b.Operation,
|
|
|
|
},
|
|
|
|
|
2016-11-07 10:57:27 -06:00
|
|
|
// Add orphan resources
|
2018-09-26 17:26:39 -05:00
|
|
|
&OrphanResourceInstanceTransformer{
|
2022-06-01 14:29:59 -05:00
|
|
|
Concrete: b.ConcreteResourceOrphan,
|
|
|
|
State: b.State,
|
|
|
|
Config: b.Config,
|
2022-06-06 13:46:59 -05:00
|
|
|
skip: b.Operation == walkPlanDestroy,
|
2016-11-07 10:57:27 -06:00
|
|
|
},
|
|
|
|
|
2018-09-20 14:30:52 -05:00
|
|
|
// We also need nodes for any deposed instance objects present in the
|
2022-06-06 13:46:59 -05:00
|
|
|
// state, so we can plan to destroy them. (During plan this will
|
2022-06-20 13:54:20 -05:00
|
|
|
// intentionally skip creating nodes for _current_ objects, since
|
2022-06-06 13:46:59 -05:00
|
|
|
// ConfigTransformer created nodes that will do that during
|
|
|
|
// DynamicExpand.)
|
2018-09-20 14:30:52 -05:00
|
|
|
&StateTransformer{
|
2022-05-27 09:59:11 -05:00
|
|
|
ConcreteCurrent: b.ConcreteResourceInstance,
|
|
|
|
ConcreteDeposed: b.ConcreteResourceInstanceDeposed,
|
2018-09-20 14:30:52 -05:00
|
|
|
State: b.State,
|
|
|
|
},
|
|
|
|
|
2020-10-06 16:39:53 -05:00
|
|
|
// Attach the state
|
|
|
|
&AttachStateTransformer{State: b.State},
|
|
|
|
|
2017-11-08 10:11:26 -06:00
|
|
|
// Create orphan output nodes
|
2022-11-22 08:11:10 -06:00
|
|
|
&OrphanOutputTransformer{
|
|
|
|
Config: b.Config,
|
|
|
|
State: b.State,
|
|
|
|
Planning: true,
|
|
|
|
},
|
2017-11-08 10:11:26 -06:00
|
|
|
|
2016-11-05 18:26:12 -05:00
|
|
|
// Attach the configuration to any resources
|
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
|
|
|
&AttachResourceConfigTransformer{Config: b.Config},
|
2016-11-05 18:26:12 -05:00
|
|
|
|
2020-10-06 16:39:53 -05:00
|
|
|
// add providers
|
2021-08-31 12:16:44 -05:00
|
|
|
transformProviders(b.ConcreteProvider, b.Config),
|
2018-05-25 18:27:11 -05:00
|
|
|
|
2017-11-09 09:34:56 -06:00
|
|
|
// Remove modules no longer present in the config
|
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
|
|
|
&RemovedModuleTransformer{Config: b.Config, State: b.State},
|
2017-11-09 09:34:56 -06:00
|
|
|
|
2018-06-01 15:00:52 -05:00
|
|
|
// Must attach schemas before ReferenceTransformer so that we can
|
|
|
|
// analyze the configuration to find references.
|
2021-08-31 18:36:27 -05:00
|
|
|
&AttachSchemaTransformer{Plugins: b.Plugins, Config: b.Config},
|
2018-06-01 15:00:52 -05:00
|
|
|
|
2024-04-18 08:11:38 -05:00
|
|
|
// After schema transformer, we can add function references
|
|
|
|
&ProviderFunctionTransformer{Config: b.Config},
|
|
|
|
|
|
|
|
// Remove unused providers and proxies
|
|
|
|
&PruneProviderTransformer{},
|
|
|
|
|
2019-11-21 20:45:43 -06:00
|
|
|
// Create expansion nodes for all of the module calls. This must
|
|
|
|
// come after all other transformers that create nodes representing
|
|
|
|
// objects that can belong to modules.
|
2020-10-06 16:39:53 -05:00
|
|
|
&ModuleExpansionTransformer{Concrete: b.ConcreteModule, Config: b.Config},
|
2019-11-21 20:45:43 -06:00
|
|
|
|
2023-06-26 10:42:53 -05:00
|
|
|
// Plug in any external references.
|
|
|
|
&ExternalReferenceTransformer{
|
|
|
|
ExternalReferences: b.ExternalReferences,
|
|
|
|
},
|
|
|
|
|
2016-11-07 19:54:06 -06:00
|
|
|
&ReferenceTransformer{},
|
2022-05-27 09:59:11 -05:00
|
|
|
|
2020-09-21 14:53:53 -05:00
|
|
|
&AttachDependenciesTransformer{},
|
2016-11-07 19:54:06 -06:00
|
|
|
|
2020-05-04 20:45:17 -05:00
|
|
|
// Make sure data sources are aware of any depends_on from the
|
|
|
|
// configuration
|
2021-03-08 12:46:28 -06:00
|
|
|
&attachDataResourceDependsOnTransformer{},
|
2020-05-04 20:45:17 -05:00
|
|
|
|
2022-05-27 09:59:11 -05:00
|
|
|
// DestroyEdgeTransformer is only required during a plan so that the
|
|
|
|
// TargetsTransformer can determine which nodes to keep in the graph.
|
2023-04-24 07:43:23 -05:00
|
|
|
&DestroyEdgeTransformer{
|
|
|
|
Operation: b.Operation,
|
|
|
|
},
|
2022-05-27 09:59:11 -05:00
|
|
|
|
2022-09-22 09:23:45 -05:00
|
|
|
&pruneUnusedNodesTransformer{
|
|
|
|
skip: b.Operation != walkPlanDestroy,
|
|
|
|
},
|
|
|
|
|
2016-11-07 19:54:06 -06:00
|
|
|
// Target
|
2020-10-06 16:39:53 -05:00
|
|
|
&TargetsTransformer{Targets: b.Targets},
|
2016-11-07 19:54:06 -06:00
|
|
|
|
2018-09-21 19:08:52 -05:00
|
|
|
// Detect when create_before_destroy must be forced on for a particular
|
|
|
|
// node due to dependency edges, to avoid graph cycles during apply.
|
|
|
|
&ForcedCBDTransformer{},
|
|
|
|
|
2017-04-12 16:25:15 -05:00
|
|
|
// Close opened plugin connections
|
|
|
|
&CloseProviderTransformer{},
|
|
|
|
|
2020-04-02 14:49:32 -05:00
|
|
|
// Close the root module
|
|
|
|
&CloseRootModuleTransformer{},
|
2016-11-05 18:26:12 -05:00
|
|
|
|
|
|
|
// Perform the transitive reduction to make our graph a bit
|
2020-10-18 11:56:51 -05:00
|
|
|
// more understandable if possible (it usually is possible).
|
2020-08-14 13:13:33 -05:00
|
|
|
&TransitiveReductionTransformer{},
|
2016-11-05 18:26:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return steps
|
|
|
|
}
|
2017-01-25 14:24:48 -06:00
|
|
|
|
2022-06-06 13:46:59 -05:00
|
|
|
func (b *PlanGraphBuilder) initPlan() {
|
2017-01-25 14:24:48 -06:00
|
|
|
b.ConcreteProvider = func(a *NodeAbstractProvider) dag.Vertex {
|
|
|
|
return &NodeApplyableProvider{
|
|
|
|
NodeAbstractProvider: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex {
|
2020-03-20 14:19:01 -05:00
|
|
|
return &nodeExpandPlannableResource{
|
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
|
|
|
NodeAbstractResource: a,
|
2020-09-23 10:05:09 -05:00
|
|
|
skipRefresh: b.skipRefresh,
|
2021-04-05 19:05:57 -05:00
|
|
|
skipPlanChanges: b.skipPlanChanges,
|
2022-11-11 10:46:56 -06:00
|
|
|
preDestroyRefresh: b.preDestroyRefresh,
|
2021-04-06 19:37:38 -05:00
|
|
|
forceReplace: b.ForceReplace,
|
2017-01-25 14:24:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
b.ConcreteResourceOrphan = func(a *NodeAbstractResourceInstance) dag.Vertex {
|
|
|
|
return &NodePlannableResourceInstanceOrphan{
|
|
|
|
NodeAbstractResourceInstance: a,
|
2020-10-22 08:13:02 -05:00
|
|
|
skipRefresh: b.skipRefresh,
|
2021-04-05 19:05:57 -05:00
|
|
|
skipPlanChanges: b.skipPlanChanges,
|
2024-02-21 02:31:44 -06:00
|
|
|
EndpointsToRemove: b.EndpointsToRemove,
|
2017-01-25 14:24:48 -06:00
|
|
|
}
|
|
|
|
}
|
2022-05-27 09:59:11 -05:00
|
|
|
|
|
|
|
b.ConcreteResourceInstanceDeposed = func(a *NodeAbstractResourceInstance, key states.DeposedKey) dag.Vertex {
|
|
|
|
return &NodePlanDeposedResourceInstanceObject{
|
|
|
|
NodeAbstractResourceInstance: a,
|
|
|
|
DeposedKey: key,
|
|
|
|
|
2024-02-21 02:31:44 -06:00
|
|
|
skipRefresh: b.skipRefresh,
|
|
|
|
skipPlanChanges: b.skipPlanChanges,
|
|
|
|
EndpointsToRemove: b.EndpointsToRemove,
|
2022-05-27 09:59:11 -05:00
|
|
|
}
|
|
|
|
}
|
2022-06-06 13:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *PlanGraphBuilder) initDestroy() {
|
|
|
|
b.initPlan()
|
|
|
|
|
|
|
|
b.ConcreteResourceInstance = func(a *NodeAbstractResourceInstance) dag.Vertex {
|
|
|
|
return &NodePlanDestroyableResourceInstance{
|
|
|
|
NodeAbstractResourceInstance: a,
|
|
|
|
skipRefresh: b.skipRefresh,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-27 09:59:11 -05:00
|
|
|
|
2022-06-06 13:46:59 -05:00
|
|
|
func (b *PlanGraphBuilder) initValidate() {
|
|
|
|
// Set the provider to the normal provider. This will ask for input.
|
|
|
|
b.ConcreteProvider = func(a *NodeAbstractProvider) dag.Vertex {
|
|
|
|
return &NodeApplyableProvider{
|
|
|
|
NodeAbstractProvider: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex {
|
|
|
|
return &NodeValidatableResource{
|
|
|
|
NodeAbstractResource: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ConcreteModule = func(n *nodeExpandModule) dag.Vertex {
|
|
|
|
return &nodeValidateModule{
|
|
|
|
nodeExpandModule: *n,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *PlanGraphBuilder) initImport() {
|
|
|
|
b.ConcreteProvider = func(a *NodeAbstractProvider) dag.Vertex {
|
|
|
|
return &NodeApplyableProvider{
|
|
|
|
NodeAbstractProvider: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ConcreteResource = func(a *NodeAbstractResource) dag.Vertex {
|
|
|
|
return &nodeExpandPlannableResource{
|
|
|
|
NodeAbstractResource: a,
|
|
|
|
|
|
|
|
// For now we always skip planning changes for import, since we are
|
|
|
|
// not going to combine importing with other changes. This is
|
|
|
|
// temporary to try and maintain existing import behaviors, but
|
|
|
|
// planning will need to be allowed for more complex configurations.
|
|
|
|
skipPlanChanges: true,
|
|
|
|
|
|
|
|
// We also skip refresh for now, since the plan output is written
|
|
|
|
// as the new state, and users are not expecting the import process
|
|
|
|
// to update any other instances in state.
|
|
|
|
skipRefresh: true,
|
|
|
|
}
|
|
|
|
}
|
2017-01-25 14:24:48 -06:00
|
|
|
}
|