opentofu/internal/command/plan.go

324 lines
12 KiB
Go
Raw Normal View History

// Copyright (c) The OpenTofu Authors
// SPDX-License-Identifier: MPL-2.0
// Copyright (c) 2023 HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package command
import (
"fmt"
"strings"
"github.com/opentofu/opentofu/internal/backend"
"github.com/opentofu/opentofu/internal/command/arguments"
"github.com/opentofu/opentofu/internal/command/views"
"github.com/opentofu/opentofu/internal/encryption"
"github.com/opentofu/opentofu/internal/tfdiags"
)
// PlanCommand is a Command implementation that compares a OpenTofu
// configuration to an actual infrastructure and shows the differences.
2014-06-20 13:47:02 -05:00
type PlanCommand struct {
Meta
}
2021-02-22 10:55:00 -06:00
func (c *PlanCommand) Run(rawArgs []string) int {
ctx := c.CommandContext()
2021-02-22 10:55:00 -06:00
// Parse and apply global view arguments
common, rawArgs := arguments.ParseView(rawArgs)
c.View.Configure(common)
2021-10-28 15:27:39 -05:00
// Propagate -no-color for legacy use of Ui. The remote backend and
// cloud package use this; it should be removed when/if they are
// migrated to views.
c.Meta.color = !common.NoColor
c.Meta.Color = c.Meta.color
2021-02-22 10:55:00 -06:00
// Parse and validate flags
args, diags := arguments.ParsePlan(rawArgs)
c.View.SetShowSensitive(args.ShowSensitive)
2021-02-22 10:55:00 -06:00
// Instantiate the view, even if there are flag errors, so that we render
// diagnostics according to the desired view
view := views.NewPlan(args.ViewType, c.View)
2021-02-22 10:55:00 -06:00
if diags.HasErrors() {
view.Diagnostics(diags)
view.HelpPrompt()
return 1
}
2021-02-22 10:55:00 -06:00
// Check for user-supplied plugin path
var err error
if c.pluginPath, err = c.loadPluginPath(); err != nil {
diags = diags.Append(err)
view.Diagnostics(diags)
return 1
}
// FIXME: the -input flag value is needed to initialize the backend and the
// operation, but there is no clear path to pass this value down, so we
// continue to mutate the Meta object state for now.
c.Meta.input = args.InputEnabled
// FIXME: the -parallelism flag is used to control the concurrency of
// OpenTofu operations. At the moment, this value is used both to
2021-02-22 10:55:00 -06:00
// initialize the backend via the ContextOpts field inside CLIOpts, and to
// set a largely unused field on the Operation request. Again, there is no
// clear path to pass this value down, so we continue to mutate the Meta
// object state for now.
c.Meta.parallelism = args.Operation.Parallelism
diags = diags.Append(c.providerDevOverrideRuntimeWarnings())
// Inject variables from args into meta for static evaluation
c.GatherVariables(args.Vars)
// Load the encryption configuration
enc, encDiags := c.Encryption()
diags = diags.Append(encDiags)
if encDiags.HasErrors() {
view.Diagnostics(diags)
return 1
}
2021-02-22 10:55:00 -06:00
// Prepare the backend with the backend-specific arguments
be, beDiags := c.PrepareBackend(args.State, args.ViewType, enc)
2021-02-22 10:55:00 -06:00
diags = diags.Append(beDiags)
if diags.HasErrors() {
2021-02-22 10:55:00 -06:00
view.Diagnostics(diags)
return 1
}
2021-02-22 10:55:00 -06:00
// Build the operation request
opReq, opDiags := c.OperationRequest(be, view, args.ViewType, args.Operation, args.OutPath, args.GenerateConfigPath, enc)
2021-02-22 10:55:00 -06:00
diags = diags.Append(opDiags)
if diags.HasErrors() {
view.Diagnostics(diags)
return 1
}
2021-02-22 10:55:00 -06:00
// Before we delegate to the backend, we'll print any warning diagnostics
// we've accumulated here, since the backend will start fresh with its own
// diagnostics.
view.Diagnostics(diags)
diags = nil
// Perform the operation
op, diags := c.RunOperation(ctx, be, opReq)
view.Diagnostics(diags)
if diags.HasErrors() {
return 1
2014-06-26 11:56:29 -05:00
}
2021-02-22 10:55:00 -06:00
if op.Result != backend.OperationSuccess {
return op.Result.ExitStatus()
}
if args.DetailedExitCode && !op.PlanEmpty {
return 2
}
return op.Result.ExitStatus()
}
func (c *PlanCommand) PrepareBackend(args *arguments.State, viewType arguments.ViewType, enc encryption.Encryption) (backend.Enhanced, tfdiags.Diagnostics) {
2021-02-22 10:55:00 -06:00
// FIXME: we need to apply the state arguments to the meta object here
// because they are later used when initializing the backend. Carving a
// path to pass these arguments to the functions that need them is
// difficult but would make their use easier to understand.
c.Meta.applyStateArguments(args)
backendConfig, diags := c.loadBackendConfig(".")
if diags.HasErrors() {
return nil, diags
}
2017-01-18 22:50:45 -06:00
// Load the backend
2021-02-22 10:55:00 -06:00
be, beDiags := c.Backend(&BackendOpts{
Config: backendConfig,
ViewType: viewType,
}, enc.State())
2021-02-22 10:55:00 -06:00
diags = diags.Append(beDiags)
if beDiags.HasErrors() {
return nil, diags
2014-06-10 13:34:08 -05:00
}
2021-02-22 10:55:00 -06:00
return be, diags
}
func (c *PlanCommand) OperationRequest(
be backend.Enhanced,
view views.Plan,
viewType arguments.ViewType,
2021-02-22 10:55:00 -06:00
args *arguments.Operation,
planOutPath string,
generateConfigOut string,
enc encryption.Encryption,
2021-02-22 10:55:00 -06:00
) (*backend.Operation, tfdiags.Diagnostics) {
var diags tfdiags.Diagnostics
2017-01-18 22:50:45 -06:00
// Build the operation
opReq := c.Operation(be, viewType, enc)
2021-02-22 10:55:00 -06:00
opReq.ConfigDir = "."
opReq.PlanMode = args.PlanMode
2021-02-22 10:55:00 -06:00
opReq.Hooks = view.Hooks()
opReq.PlanRefresh = args.Refresh
opReq.PlanOutPath = planOutPath
opReq.GenerateConfigOut = generateConfigOut
2021-02-22 10:55:00 -06:00
opReq.Targets = args.Targets
opReq.Excludes = args.Excludes
opReq.ForceReplace = args.ForceReplace
2017-01-18 22:50:45 -06:00
opReq.Type = backend.OperationTypePlan
2021-02-22 10:55:00 -06:00
opReq.View = view.Operation()
2021-02-22 10:55:00 -06:00
var err error
opReq.ConfigLoader, err = c.initConfigLoader()
if err != nil {
diags = diags.Append(fmt.Errorf("Failed to initialize config loader: %w", err))
2021-02-22 10:55:00 -06:00
return nil, diags
}
2017-01-18 22:50:45 -06:00
2021-02-22 10:55:00 -06:00
return opReq, diags
}
func (c *PlanCommand) GatherVariables(args *arguments.Vars) {
2021-02-22 10:55:00 -06:00
// FIXME the arguments package currently trivially gathers variable related
// arguments in a heterogeneous slice, in order to minimize the number of
2021-02-22 10:55:00 -06:00
// code paths gathering variables during the transition to this structure.
// Once all commands that gather variables have been converted to this
// structure, we could move the variable gathering code to the arguments
// package directly, removing this shim layer.
varArgs := args.All()
items := make([]rawFlag, len(varArgs))
for i := range varArgs {
items[i].Name = varArgs[i].Name
items[i].Value = varArgs[i].Value
}
2021-02-22 10:55:00 -06:00
c.Meta.variableArgs = rawFlags{items: &items}
}
2014-06-20 13:47:02 -05:00
func (c *PlanCommand) Help() string {
helpText := `
Usage: tofu [global options] plan [options]
Generates a speculative execution plan, showing what actions OpenTofu
would take to apply the current configuration. This command will not
actually perform the planned actions.
You can optionally save the plan to a file, which you can then pass to
the "apply" command to perform exactly the actions described in the plan.
Plan Customization Options:
The following options customize how OpenTofu will produce its plan. You
can also use these options when you run "tofu apply" without passing
it a saved plan, in order to plan and apply in a single command.
-destroy Select the "destroy" planning mode, which creates a plan
to destroy all objects currently managed by this
OpenTofu configuration instead of the usual behavior.
2014-07-01 11:12:35 -05:00
-refresh-only Select the "refresh only" planning mode, which checks
whether remote objects still match the outcome of the
most recent OpenTofu apply but does not propose any
actions to undo any changes made outside of OpenTofu.
-refresh=false Skip checking for external changes to remote objects
while creating the plan. This can potentially make
planning faster, but at the expense of possibly planning
against a stale record of the remote system state.
-replace=resource Force replacement of a particular resource instance using
its resource address. If the plan would've normally
produced an update or no-op action for this instance,
OpenTofu will plan to replace it instead. You can use
this option multiple times to replace more than one object.
-target=resource Limit the planning operation to only the given module,
resource, or resource instance and all of its
dependencies. You can use this option multiple times to
include more than one object. This is for exceptional
use only. Cannot be used alongside the -exclude flag
-exclude=resource Limit the planning operation to not operate on the given
module, resource, or resource instance and all of the
resources and modules that depend on it. You can use this
option multiple times to exclude more than one object.
This is for exceptional use only. Cannot be used alongside
the -target flag
-var 'foo=bar' Set a value for one of the input variables in the root
module of the configuration. Use this option more than
once to set more than one variable.
-var-file=filename Load variable values from the given file, in addition
to the default files terraform.tfvars and *.auto.tfvars.
Use this option more than once to include more than one
variables file.
Other Options:
-compact-warnings If OpenTofu produces any warnings that are not
accompanied by errors, shows them in a more compact
form that includes only the summary messages.
-consolidate-warnings If OpenTofu produces any warnings, no consolodation
will be performed. All locations, for all warnings
will be listed. Enabled by default.
-consolidate-errors If OpenTofu produces any errors, no consolodation
will be performed. All locations, for all errors
will be listed. Disabled by default
-detailed-exitcode Return detailed exit codes when the command exits.
This will change the meaning of exit codes to:
0 - Succeeded, diff is empty (no changes)
1 - Errored
2 - Succeeded, there is a diff
-generate-config-out=path (Experimental) If import blocks are present in
configuration, instructs OpenTofu to generate HCL
for any imported resources not already present. The
configuration is written to a new file at PATH,
which must not already exist. OpenTofu may still
attempt to write configuration if the plan errors.
-input=true Ask for input for variables if not directly set.
-lock=false Don't hold a state lock during the operation. This
is dangerous if others might concurrently run
commands against the same workspace.
-lock-timeout=0s Duration to retry a state lock.
-no-color If specified, output won't contain any color.
2014-06-27 00:23:51 -05:00
-concise Displays plan output in a concise way, skipping the
refreshing log lines.
-out=path Write a plan file to the given path. This can be
used as input to the "apply" command.
-parallelism=n Limit the number of concurrent operations. Defaults
to 10.
-state=statefile A legacy option used for the local backend only.
See the local backend's documentation for more
information.
-show-sensitive If specified, sensitive values will be displayed.
-json Produce output in a machine-readable JSON format,
suitable for use in text editor integrations and
other automated systems. Always disables color.
`
return strings.TrimSpace(helpText)
}
2014-06-20 13:47:02 -05:00
func (c *PlanCommand) Synopsis() string {
return "Show changes required by the current configuration"
}