2023-05-02 11:33:06 -04:00
|
|
|
// Copyright IBM Corp. 2014, 2026
|
2023-08-10 18:43:27 -04:00
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
2023-05-02 11:33:06 -04:00
|
|
|
|
2016-11-14 01:18:18 -05:00
|
|
|
package command
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bufio"
|
2019-08-16 08:31:21 -04:00
|
|
|
"fmt"
|
2021-10-27 10:28:19 -04:00
|
|
|
"os"
|
2016-11-14 01:18:18 -05:00
|
|
|
"strings"
|
|
|
|
|
|
backendrun: Separate the types/etc for backends that support operations
We previously had all of the types and helpers for all kinds of backends
together in package backend. That kept things relatively simple, but it
also meant that the majority of backends that only deal with remote state
storage ended up still indirectly depending on the entire Terraform modules
runtime, configuration loader, etc, etc, which brings into scope a bunch
of external dependencies that the remote state backends don't really need.
Since backends that support operations are a rare exception, we'll move the
types and helpers for those into a separate package "backendrun", and
then the main package backend can have a much more modest set of types and,
more importantly, a modest set of dependencies on other packages in this
codebase.
This is part of an ongoing effort to reduce the exposure of Terraform Core
and CLI code to the remote backends and vice-versa, so that in the long
run we can more often treat them as separate for dependency maintenance
purposes.
2024-03-11 19:27:44 -04:00
|
|
|
"github.com/hashicorp/cli"
|
|
|
|
|
|
2021-05-17 15:00:50 -04:00
|
|
|
"github.com/hashicorp/terraform/internal/addrs"
|
backendrun: Separate the types/etc for backends that support operations
We previously had all of the types and helpers for all kinds of backends
together in package backend. That kept things relatively simple, but it
also meant that the majority of backends that only deal with remote state
storage ended up still indirectly depending on the entire Terraform modules
runtime, configuration loader, etc, etc, which brings into scope a bunch
of external dependencies that the remote state backends don't really need.
Since backends that support operations are a rare exception, we'll move the
types and helpers for those into a separate package "backendrun", and
then the main package backend can have a much more modest set of types and,
more importantly, a modest set of dependencies on other packages in this
codebase.
This is part of an ongoing effort to reduce the exposure of Terraform Core
and CLI code to the remote backends and vice-versa, so that in the long
run we can more often treat them as separate for dependency maintenance
purposes.
2024-03-11 19:27:44 -04:00
|
|
|
"github.com/hashicorp/terraform/internal/backend/backendrun"
|
2023-02-07 03:06:12 -05:00
|
|
|
"github.com/hashicorp/terraform/internal/command/arguments"
|
2023-11-29 20:13:05 -05:00
|
|
|
"github.com/hashicorp/terraform/internal/lang"
|
2021-05-17 12:39:14 -04:00
|
|
|
"github.com/hashicorp/terraform/internal/repl"
|
core: Functional-style API for terraform.Context
Previously terraform.Context was built in an unfortunate way where all of
the data was provided up front in terraform.NewContext and then mutated
directly by subsequent operations. That made the data flow hard to follow,
commonly leading to bugs, and also meant that we were forced to take
various actions too early in terraform.NewContext, rather than waiting
until a more appropriate time during an operation.
This (enormous) commit changes terraform.Context so that its fields are
broadly just unchanging data about the execution context (current
workspace name, available plugins, etc) whereas the main data Terraform
works with arrives via individual method arguments and is returned in
return values.
Specifically, this means that terraform.Context no longer "has-a" config,
state, and "planned changes", instead holding on to those only temporarily
during an operation. The caller is responsible for propagating the outcome
of one step into the next step so that the data flow between operations is
actually visible.
However, since that's a change to the main entry points in the "terraform"
package, this commit also touches every file in the codebase which
interacted with those APIs. Most of the noise here is in updating tests
to take the same actions using the new API style, but this also affects
the main-code callers in the backends and in the command package.
My goal here was to refactor without changing observable behavior, but in
practice there are a couple externally-visible behavior variations here
that seemed okay in service of the broader goal:
- The "terraform graph" command is no longer hooked directly into the
core graph builders, because that's no longer part of the public API.
However, I did include a couple new Context functions whose contract
is to produce a UI-oriented graph, and _for now_ those continue to
return the physical graph we use for those operations. There's no
exported API for generating the "validate" and "eval" graphs, because
neither is particularly interesting in its own right, and so
"terraform graph" no longer supports those graph types.
- terraform.NewContext no longer has the responsibility for collecting
all of the provider schemas up front. Instead, we wait until we need
them. However, that means that some of our error messages now have a
slightly different shape due to unwinding through a differently-shaped
call stack. As of this commit we also end up reloading the schemas
multiple times in some cases, which is functionally acceptable but
likely represents a performance regression. I intend to rework this to
use caching, but I'm saving that for a later commit because this one is
big enough already.
The proximal reason for this change is to resolve the chicken/egg problem
whereby there was previously no single point where we could apply "moved"
statements to the previous run state before creating a plan. With this
change in place, we can now do that as part of Context.Plan, prior to
forking the input state into the three separate state artifacts we use
during planning.
However, this is at least the third project in a row where the previous
API design led to piling more functionality into terraform.NewContext and
then working around the incorrect order of operations that produces, so
I intend that by paying the cost/risk of this large diff now we can in
turn reduce the cost/risk of future projects that relate to our main
workflow actions.
2021-08-24 15:06:38 -04:00
|
|
|
"github.com/hashicorp/terraform/internal/terraform"
|
2021-05-17 13:11:06 -04:00
|
|
|
"github.com/hashicorp/terraform/internal/tfdiags"
|
2016-11-14 01:18:18 -05:00
|
|
|
)
|
|
|
|
|
|
2023-06-30 16:44:43 -04:00
|
|
|
// ConsoleCommand is a Command implementation that starts an interactive
|
|
|
|
|
// console that can be used to try expressions with the current config.
|
2016-11-14 01:18:18 -05:00
|
|
|
type ConsoleCommand struct {
|
|
|
|
|
Meta
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *ConsoleCommand) Run(args []string) int {
|
2026-02-18 03:36:41 -05:00
|
|
|
parsedArgs, diags := arguments.ParseConsole(c.Meta.process(args))
|
|
|
|
|
|
|
|
|
|
// Copy parsed flags back to Meta
|
|
|
|
|
c.Meta.statePath = parsedArgs.StatePath
|
|
|
|
|
c.Meta.input = parsedArgs.InputEnabled
|
|
|
|
|
c.Meta.compactWarnings = parsedArgs.CompactWarnings
|
|
|
|
|
c.Meta.targetFlags = parsedArgs.TargetFlags
|
|
|
|
|
|
|
|
|
|
if diags.HasErrors() {
|
|
|
|
|
c.showDiagnostics(diags)
|
2017-01-18 23:50:45 -05:00
|
|
|
return 1
|
|
|
|
|
}
|
2026-02-18 03:36:41 -05:00
|
|
|
|
|
|
|
|
configPath := c.Meta.normalizePath(parsedArgs.ConfigPath)
|
2017-01-18 23:50:45 -05:00
|
|
|
|
2019-08-28 11:57:05 -04:00
|
|
|
// Check for user-supplied plugin path
|
2026-02-18 03:36:41 -05:00
|
|
|
var err error
|
2019-08-28 11:57:05 -04:00
|
|
|
if c.pluginPath, err = c.loadPluginPath(); err != nil {
|
|
|
|
|
c.Ui.Error(fmt.Sprintf("Error loading plugin path: %s", err))
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 23:50:45 -05:00
|
|
|
// Load the backend
|
2025-11-03 12:57:20 -05:00
|
|
|
b, backendDiags := c.backend(configPath, arguments.ViewHuman)
|
2018-03-27 18:31:05 -04:00
|
|
|
diags = diags.Append(backendDiags)
|
|
|
|
|
if backendDiags.HasErrors() {
|
|
|
|
|
c.showDiagnostics(diags)
|
2016-11-14 01:18:18 -05:00
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-18 23:50:45 -05:00
|
|
|
// We require a local backend
|
backendrun: Separate the types/etc for backends that support operations
We previously had all of the types and helpers for all kinds of backends
together in package backend. That kept things relatively simple, but it
also meant that the majority of backends that only deal with remote state
storage ended up still indirectly depending on the entire Terraform modules
runtime, configuration loader, etc, etc, which brings into scope a bunch
of external dependencies that the remote state backends don't really need.
Since backends that support operations are a rare exception, we'll move the
types and helpers for those into a separate package "backendrun", and
then the main package backend can have a much more modest set of types and,
more importantly, a modest set of dependencies on other packages in this
codebase.
This is part of an ongoing effort to reduce the exposure of Terraform Core
and CLI code to the remote backends and vice-versa, so that in the long
run we can more often treat them as separate for dependency maintenance
purposes.
2024-03-11 19:27:44 -04:00
|
|
|
local, ok := b.(backendrun.Local)
|
2017-01-18 23:50:45 -05:00
|
|
|
if !ok {
|
2018-03-27 18:31:05 -04:00
|
|
|
c.showDiagnostics(diags) // in case of any warnings in here
|
2017-01-18 23:50:45 -05:00
|
|
|
c.Ui.Error(ErrUnsupportedLocalOp)
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
|
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 16:43:56 -05:00
|
|
|
// This is a read-only command
|
2021-08-24 15:28:12 -04:00
|
|
|
c.ignoreRemoteVersionConflict(b)
|
backend: Validate remote backend Terraform version
When using the enhanced remote backend, a subset of all Terraform
operations are supported. Of these, only plan and apply can be executed
on the remote infrastructure (e.g. Terraform Cloud). Other operations
run locally and use the remote backend for state storage.
This causes problems when the local version of Terraform does not match
the configured version from the remote workspace. If the two versions
are incompatible, an `import` or `state mv` operation can cause the
remote workspace to be unusable until a manual fix is applied.
To prevent this from happening accidentally, this commit introduces a
check that the local Terraform version and the configured remote
workspace Terraform version are compatible. This check is skipped for
commands which do not write state, and can also be disabled by the use
of a new command-line flag, `-ignore-remote-version`.
Terraform version compatibility is defined as:
- For all releases before 0.14.0, local must exactly equal remote, as
two different versions cannot share state;
- 0.14.0 to 1.0.x are compatible, as we will not change the state
version number until at least Terraform 1.1.0;
- Versions after 1.1.0 must have the same major and minor versions, as
we will not change the state version number in a patch release.
If the two versions are incompatible, a diagnostic is displayed,
advising that the error can be suppressed with `-ignore-remote-version`.
When this flag is used, the diagnostic is still displayed, but as a
warning instead of an error.
Commands which will not write state can assert this fact by calling the
helper `meta.ignoreRemoteBackendVersionConflict`, which will disable the
checks. Those which can write state should instead call the helper
`meta.remoteBackendVersionCheck`, which will return diagnostics for
display.
In addition to these explicit paths for managing the version check, we
have an implicit check in the remote backend's state manager
initialization method. Both of the above helpers will disable this
check. This fallback is in place to ensure that future code paths which
access state cannot accidentally skip the remote version check.
2020-11-13 16:43:56 -05:00
|
|
|
|
2017-01-18 23:50:45 -05:00
|
|
|
// Build the operation
|
2023-02-07 03:06:12 -05:00
|
|
|
opReq := c.Operation(b, arguments.ViewHuman)
|
2018-03-27 18:31:05 -04:00
|
|
|
opReq.ConfigDir = configPath
|
|
|
|
|
opReq.ConfigLoader, err = c.initConfigLoader()
|
2019-10-09 17:29:40 -04:00
|
|
|
opReq.AllowUnsetVariables = true // we'll just evaluate them as unknown
|
2018-03-27 18:31:05 -04:00
|
|
|
if err != nil {
|
|
|
|
|
diags = diags.Append(err)
|
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
|
return 1
|
|
|
|
|
}
|
2018-11-21 09:35:27 -05:00
|
|
|
|
2018-10-13 11:07:58 -04:00
|
|
|
{
|
2026-02-18 03:44:24 -05:00
|
|
|
// Collect variable value and add them to the operation request
|
|
|
|
|
var varDiags tfdiags.Diagnostics
|
|
|
|
|
opReq.Variables, varDiags = parsedArgs.Vars.CollectValues(func(filename string, src []byte) {
|
2026-02-18 04:15:03 -05:00
|
|
|
opReq.ConfigLoader.Parser().ForceFileSource(filename, src)
|
2026-02-18 03:44:24 -05:00
|
|
|
})
|
|
|
|
|
diags = diags.Append(varDiags)
|
|
|
|
|
if varDiags.HasErrors() {
|
2018-10-13 11:07:58 -04:00
|
|
|
c.showDiagnostics(diags)
|
|
|
|
|
return 1
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-01-18 23:50:45 -05:00
|
|
|
|
|
|
|
|
// Get the context
|
core: Functional-style API for terraform.Context
Previously terraform.Context was built in an unfortunate way where all of
the data was provided up front in terraform.NewContext and then mutated
directly by subsequent operations. That made the data flow hard to follow,
commonly leading to bugs, and also meant that we were forced to take
various actions too early in terraform.NewContext, rather than waiting
until a more appropriate time during an operation.
This (enormous) commit changes terraform.Context so that its fields are
broadly just unchanging data about the execution context (current
workspace name, available plugins, etc) whereas the main data Terraform
works with arrives via individual method arguments and is returned in
return values.
Specifically, this means that terraform.Context no longer "has-a" config,
state, and "planned changes", instead holding on to those only temporarily
during an operation. The caller is responsible for propagating the outcome
of one step into the next step so that the data flow between operations is
actually visible.
However, since that's a change to the main entry points in the "terraform"
package, this commit also touches every file in the codebase which
interacted with those APIs. Most of the noise here is in updating tests
to take the same actions using the new API style, but this also affects
the main-code callers in the backends and in the command package.
My goal here was to refactor without changing observable behavior, but in
practice there are a couple externally-visible behavior variations here
that seemed okay in service of the broader goal:
- The "terraform graph" command is no longer hooked directly into the
core graph builders, because that's no longer part of the public API.
However, I did include a couple new Context functions whose contract
is to produce a UI-oriented graph, and _for now_ those continue to
return the physical graph we use for those operations. There's no
exported API for generating the "validate" and "eval" graphs, because
neither is particularly interesting in its own right, and so
"terraform graph" no longer supports those graph types.
- terraform.NewContext no longer has the responsibility for collecting
all of the provider schemas up front. Instead, we wait until we need
them. However, that means that some of our error messages now have a
slightly different shape due to unwinding through a differently-shaped
call stack. As of this commit we also end up reloading the schemas
multiple times in some cases, which is functionally acceptable but
likely represents a performance regression. I intend to rework this to
use caching, but I'm saving that for a later commit because this one is
big enough already.
The proximal reason for this change is to resolve the chicken/egg problem
whereby there was previously no single point where we could apply "moved"
statements to the previous run state before creating a plan. With this
change in place, we can now do that as part of Context.Plan, prior to
forking the input state into the three separate state artifacts we use
during planning.
However, this is at least the third project in a row where the previous
API design led to piling more functionality into terraform.NewContext and
then working around the incorrect order of operations that produces, so
I intend that by paying the cost/risk of this large diff now we can in
turn reduce the cost/risk of future projects that relate to our main
workflow actions.
2021-08-24 15:06:38 -04:00
|
|
|
lr, _, ctxDiags := local.LocalRun(opReq)
|
2020-08-11 11:23:42 -04:00
|
|
|
diags = diags.Append(ctxDiags)
|
|
|
|
|
if ctxDiags.HasErrors() {
|
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
|
return 1
|
|
|
|
|
}
|
2016-11-14 01:18:18 -05:00
|
|
|
|
2020-08-11 11:23:42 -04:00
|
|
|
// Successfully creating the context can result in a lock, so ensure we release it
|
2018-03-20 12:44:12 -04:00
|
|
|
defer func() {
|
2021-02-16 07:19:22 -05:00
|
|
|
diags := opReq.StateLocker.Unlock()
|
|
|
|
|
if diags.HasErrors() {
|
|
|
|
|
c.showDiagnostics(diags)
|
2018-03-20 12:44:12 -04:00
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
2021-01-26 14:39:11 -05:00
|
|
|
// Set up the UI so we can output directly to stdout
|
2016-11-14 01:18:18 -05:00
|
|
|
ui := &cli.BasicUi{
|
2021-10-27 10:28:19 -04:00
|
|
|
Writer: os.Stdout,
|
|
|
|
|
ErrorWriter: os.Stderr,
|
2016-11-14 01:18:18 -05:00
|
|
|
}
|
|
|
|
|
|
2023-11-29 20:13:05 -05:00
|
|
|
var scope *lang.Scope
|
2026-02-18 03:36:41 -05:00
|
|
|
if parsedArgs.EvalFromPlan {
|
2023-11-29 20:13:05 -05:00
|
|
|
var planDiags tfdiags.Diagnostics
|
|
|
|
|
_, scope, planDiags = lr.Core.PlanAndEval(lr.Config, lr.InputState, lr.PlanOpts)
|
|
|
|
|
diags = diags.Append(planDiags)
|
|
|
|
|
} else {
|
|
|
|
|
evalOpts := &terraform.EvalOpts{}
|
|
|
|
|
if lr.PlanOpts != nil {
|
|
|
|
|
// the LocalRun type is built primarily to support the main operations,
|
|
|
|
|
// so the variable values end up in the "PlanOpts" even though we're
|
|
|
|
|
// not actually making a plan.
|
|
|
|
|
evalOpts.SetVariables = lr.PlanOpts.SetVariables
|
|
|
|
|
}
|
core: Functional-style API for terraform.Context
Previously terraform.Context was built in an unfortunate way where all of
the data was provided up front in terraform.NewContext and then mutated
directly by subsequent operations. That made the data flow hard to follow,
commonly leading to bugs, and also meant that we were forced to take
various actions too early in terraform.NewContext, rather than waiting
until a more appropriate time during an operation.
This (enormous) commit changes terraform.Context so that its fields are
broadly just unchanging data about the execution context (current
workspace name, available plugins, etc) whereas the main data Terraform
works with arrives via individual method arguments and is returned in
return values.
Specifically, this means that terraform.Context no longer "has-a" config,
state, and "planned changes", instead holding on to those only temporarily
during an operation. The caller is responsible for propagating the outcome
of one step into the next step so that the data flow between operations is
actually visible.
However, since that's a change to the main entry points in the "terraform"
package, this commit also touches every file in the codebase which
interacted with those APIs. Most of the noise here is in updating tests
to take the same actions using the new API style, but this also affects
the main-code callers in the backends and in the command package.
My goal here was to refactor without changing observable behavior, but in
practice there are a couple externally-visible behavior variations here
that seemed okay in service of the broader goal:
- The "terraform graph" command is no longer hooked directly into the
core graph builders, because that's no longer part of the public API.
However, I did include a couple new Context functions whose contract
is to produce a UI-oriented graph, and _for now_ those continue to
return the physical graph we use for those operations. There's no
exported API for generating the "validate" and "eval" graphs, because
neither is particularly interesting in its own right, and so
"terraform graph" no longer supports those graph types.
- terraform.NewContext no longer has the responsibility for collecting
all of the provider schemas up front. Instead, we wait until we need
them. However, that means that some of our error messages now have a
slightly different shape due to unwinding through a differently-shaped
call stack. As of this commit we also end up reloading the schemas
multiple times in some cases, which is functionally acceptable but
likely represents a performance regression. I intend to rework this to
use caching, but I'm saving that for a later commit because this one is
big enough already.
The proximal reason for this change is to resolve the chicken/egg problem
whereby there was previously no single point where we could apply "moved"
statements to the previous run state before creating a plan. With this
change in place, we can now do that as part of Context.Plan, prior to
forking the input state into the three separate state artifacts we use
during planning.
However, this is at least the third project in a row where the previous
API design led to piling more functionality into terraform.NewContext and
then working around the incorrect order of operations that produces, so
I intend that by paying the cost/risk of this large diff now we can in
turn reduce the cost/risk of future projects that relate to our main
workflow actions.
2021-08-24 15:06:38 -04:00
|
|
|
|
2023-11-29 20:13:05 -05:00
|
|
|
// Before we can evaluate expressions, we must compute and populate any
|
|
|
|
|
// derived values (input variables, local values, output values)
|
|
|
|
|
// that are not stored in the persistent state.
|
|
|
|
|
var scopeDiags tfdiags.Diagnostics
|
|
|
|
|
scope, scopeDiags = lr.Core.Eval(lr.Config, lr.InputState, addrs.RootModuleInstance, evalOpts)
|
|
|
|
|
diags = diags.Append(scopeDiags)
|
|
|
|
|
}
|
2018-05-03 23:44:55 -04:00
|
|
|
if scope == nil {
|
|
|
|
|
// scope is nil if there are errors so bad that we can't even build a scope.
|
|
|
|
|
// Otherwise, we'll try to eval anyway.
|
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
|
return 1
|
|
|
|
|
}
|
2021-04-23 10:29:50 -04:00
|
|
|
|
|
|
|
|
// set the ConsoleMode to true so any available console-only functions included.
|
|
|
|
|
scope.ConsoleMode = true
|
|
|
|
|
|
2018-05-03 23:44:55 -04:00
|
|
|
// Before we become interactive we'll show any diagnostics we encountered
|
|
|
|
|
// during initialization, and then afterwards the driver will manage any
|
|
|
|
|
// further diagnostics itself.
|
2023-11-29 20:13:05 -05:00
|
|
|
if diags.HasErrors() {
|
|
|
|
|
// showDiagnostics is designed to always render warnings first, but
|
|
|
|
|
// for this command we have one special warning that should always
|
|
|
|
|
// appear after everything else, to increase the chances that the
|
|
|
|
|
// user will notice it before they become confused by an incomplete
|
|
|
|
|
// expression result.
|
|
|
|
|
c.showDiagnostics(diags)
|
|
|
|
|
diags = nil
|
|
|
|
|
diags = diags.Append(tfdiags.SimpleWarning("Due to the problems above, some expressions may produce unexpected results."))
|
|
|
|
|
}
|
2018-05-03 23:44:55 -04:00
|
|
|
c.showDiagnostics(diags)
|
2023-11-29 20:13:05 -05:00
|
|
|
diags = nil
|
2018-05-03 23:44:55 -04:00
|
|
|
|
2016-11-14 01:18:18 -05:00
|
|
|
// IO Loop
|
|
|
|
|
session := &repl.Session{
|
2018-05-03 23:44:55 -04:00
|
|
|
Scope: scope,
|
2016-11-14 01:18:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Determine if stdin is a pipe. If so, we evaluate directly.
|
|
|
|
|
if c.StdinPiped() {
|
|
|
|
|
return c.modePiped(session, ui)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return c.modeInteractive(session, ui)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *ConsoleCommand) modePiped(session *repl.Session, ui cli.Ui) int {
|
|
|
|
|
var lastResult string
|
2021-10-27 10:28:19 -04:00
|
|
|
scanner := bufio.NewScanner(os.Stdin)
|
2016-11-14 01:18:18 -05:00
|
|
|
for scanner.Scan() {
|
2018-05-03 23:44:55 -04:00
|
|
|
result, exit, diags := session.Handle(strings.TrimSpace(scanner.Text()))
|
|
|
|
|
if diags.HasErrors() {
|
|
|
|
|
// In piped mode we'll exit immediately on error.
|
|
|
|
|
c.showDiagnostics(diags)
|
2016-11-14 01:18:18 -05:00
|
|
|
return 1
|
|
|
|
|
}
|
2018-05-03 23:44:55 -04:00
|
|
|
if exit {
|
|
|
|
|
return 0
|
|
|
|
|
}
|
2016-11-14 01:18:18 -05:00
|
|
|
|
|
|
|
|
// Store the last result
|
|
|
|
|
lastResult = result
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Output the final result
|
|
|
|
|
ui.Output(lastResult)
|
|
|
|
|
|
|
|
|
|
return 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *ConsoleCommand) Help() string {
|
|
|
|
|
helpText := `
|
2021-02-22 09:25:56 -05:00
|
|
|
Usage: terraform [global options] console [options]
|
2016-11-14 01:18:18 -05:00
|
|
|
|
|
|
|
|
Starts an interactive console for experimenting with Terraform
|
|
|
|
|
interpolations.
|
|
|
|
|
|
|
|
|
|
This will open an interactive console that you can use to type
|
|
|
|
|
interpolations into and inspect their values. This command loads the
|
|
|
|
|
current state. This lets you explore and test interpolations before
|
|
|
|
|
using them in future configurations.
|
|
|
|
|
|
|
|
|
|
This command will never modify your state.
|
|
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
2021-03-24 19:17:03 -04:00
|
|
|
-state=path Legacy option for the local backend only. See the local
|
|
|
|
|
backend's documentation for more information.
|
2016-11-14 01:18:18 -05:00
|
|
|
|
2023-11-29 20:13:05 -05:00
|
|
|
-plan Create a new plan (as if running "terraform plan") and
|
|
|
|
|
then evaluate expressions against its planned state,
|
|
|
|
|
instead of evaluating against the current state.
|
|
|
|
|
You can use this to inspect the effects of configuration
|
|
|
|
|
changes that haven't been applied yet.
|
|
|
|
|
|
2021-03-24 19:17:03 -04:00
|
|
|
-var 'foo=bar' Set a variable in the Terraform configuration. This
|
|
|
|
|
flag can be set multiple times.
|
2016-11-14 01:18:18 -05:00
|
|
|
|
2021-03-24 19:17:03 -04:00
|
|
|
-var-file=foo Set variables in the Terraform configuration from
|
|
|
|
|
a file. If "terraform.tfvars" or any ".auto.tfvars"
|
|
|
|
|
files are present, they will be automatically loaded.
|
2016-11-14 01:18:18 -05:00
|
|
|
`
|
|
|
|
|
return strings.TrimSpace(helpText)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *ConsoleCommand) Synopsis() string {
|
2020-10-23 19:55:32 -04:00
|
|
|
return "Try Terraform expressions at an interactive command prompt"
|
2016-11-14 01:18:18 -05:00
|
|
|
}
|