2017-01-19 05:47:56 +01:00
|
|
|
package local
|
|
|
|
|
|
|
|
import (
|
2017-09-01 04:19:06 +02:00
|
|
|
"bytes"
|
2017-01-19 05:47:56 +01:00
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
2018-08-30 03:18:49 +02:00
|
|
|
"sort"
|
2017-01-19 05:47:56 +01:00
|
|
|
"strings"
|
|
|
|
|
2019-11-06 02:20:26 +01:00
|
|
|
"github.com/mitchellh/cli"
|
|
|
|
"github.com/mitchellh/colorstring"
|
|
|
|
|
2018-12-12 17:01:18 +01:00
|
|
|
"github.com/hashicorp/terraform/addrs"
|
2017-01-19 05:47:56 +01:00
|
|
|
"github.com/hashicorp/terraform/backend"
|
|
|
|
"github.com/hashicorp/terraform/command/format"
|
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 23:24:45 +02:00
|
|
|
"github.com/hashicorp/terraform/plans"
|
|
|
|
"github.com/hashicorp/terraform/plans/planfile"
|
2019-03-06 01:18:55 +01:00
|
|
|
"github.com/hashicorp/terraform/states"
|
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 23:24:45 +02:00
|
|
|
"github.com/hashicorp/terraform/states/statemgr"
|
2017-01-19 05:47:56 +01:00
|
|
|
"github.com/hashicorp/terraform/terraform"
|
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 23:24:45 +02:00
|
|
|
"github.com/hashicorp/terraform/tfdiags"
|
2017-01-19 05:47:56 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (b *Local) opPlan(
|
2018-02-10 00:10:52 +01:00
|
|
|
stopCtx context.Context,
|
|
|
|
cancelCtx context.Context,
|
2017-01-19 05:47:56 +01:00
|
|
|
op *backend.Operation,
|
|
|
|
runningOp *backend.RunningOperation) {
|
2018-03-21 02:43:02 +01:00
|
|
|
|
2017-01-19 05:47:56 +01:00
|
|
|
log.Printf("[INFO] backend/local: starting Plan operation")
|
|
|
|
|
2018-03-21 02:43:02 +01:00
|
|
|
var diags tfdiags.Diagnostics
|
2017-01-19 05:47:56 +01:00
|
|
|
|
2021-01-12 03:29:39 +01:00
|
|
|
outputColumns := b.outputColumns()
|
|
|
|
|
2018-10-31 16:45:03 +01:00
|
|
|
if op.PlanFile != nil {
|
2018-03-21 02:43:02 +01:00
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Error,
|
|
|
|
"Can't re-plan a saved plan",
|
2018-10-31 16:45:03 +01:00
|
|
|
"The plan command was given a saved plan file as its input. This command generates "+
|
|
|
|
"a new plan, and so it requires a configuration directory as its argument.",
|
2018-03-21 02:43:02 +01:00
|
|
|
))
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2017-01-30 04:51:54 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-03-21 02:43:02 +01:00
|
|
|
// Local planning requires a config, unless we're planning to destroy.
|
|
|
|
if !op.Destroy && !op.HasConfig() {
|
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Error,
|
|
|
|
"No configuration files",
|
2018-10-31 16:45:03 +01:00
|
|
|
"Plan requires configuration to be present. Planning without a configuration would "+
|
|
|
|
"mark everything for destruction, which is normally not what is desired. If you "+
|
|
|
|
"would like to destroy everything, run plan with the -destroy option. Otherwise, "+
|
|
|
|
"create a Terraform configuration file (.tf file) and try again.",
|
2018-03-21 02:43:02 +01:00
|
|
|
))
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2018-03-21 02:43:02 +01:00
|
|
|
return
|
2017-01-30 04:51:54 +01:00
|
|
|
}
|
|
|
|
|
2017-01-19 05:47:56 +01:00
|
|
|
if b.ContextOpts == nil {
|
|
|
|
b.ContextOpts = new(terraform.ContextOpts)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get our context
|
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 23:24:45 +02:00
|
|
|
tfCtx, configSnap, opState, ctxDiags := b.context(op)
|
|
|
|
diags = diags.Append(ctxDiags)
|
|
|
|
if ctxDiags.HasErrors() {
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2017-01-19 05:47:56 +01:00
|
|
|
return
|
|
|
|
}
|
2020-08-11 17:23:42 +02:00
|
|
|
// the state was locked during succesfull context creation; unlock the state
|
|
|
|
// when the operation completes
|
|
|
|
defer func() {
|
2021-02-16 13:19:22 +01:00
|
|
|
diags := op.StateLocker.Unlock()
|
|
|
|
if diags.HasErrors() {
|
|
|
|
op.ShowDiagnostics(diags)
|
2020-08-11 17:23:42 +02:00
|
|
|
runningOp.Result = backend.OperationFailure
|
|
|
|
}
|
|
|
|
}()
|
2017-01-19 05:47:56 +01:00
|
|
|
|
|
|
|
runningOp.State = tfCtx.State()
|
|
|
|
|
2017-12-02 23:31:28 +01:00
|
|
|
// Perform the plan in a goroutine so we can be interrupted
|
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 23:24:45 +02:00
|
|
|
var plan *plans.Plan
|
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 19:33:53 +02:00
|
|
|
var planDiags tfdiags.Diagnostics
|
2017-12-02 23:31:28 +01:00
|
|
|
doneCh := make(chan struct{})
|
|
|
|
go func() {
|
|
|
|
defer close(doneCh)
|
|
|
|
log.Printf("[INFO] backend/local: plan calling Plan")
|
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 19:33:53 +02:00
|
|
|
plan, planDiags = tfCtx.Plan()
|
2017-12-02 23:31:28 +01:00
|
|
|
}()
|
|
|
|
|
2018-02-12 17:52:21 +01:00
|
|
|
if b.opWait(doneCh, stopCtx, cancelCtx, tfCtx, opState) {
|
2018-10-14 18:21:31 +02:00
|
|
|
// If we get in here then the operation was cancelled, which is always
|
|
|
|
// considered to be a failure.
|
|
|
|
log.Printf("[INFO] backend/local: plan operation was force-cancelled by interrupt")
|
|
|
|
runningOp.Result = backend.OperationFailure
|
2018-02-10 00:10:52 +01:00
|
|
|
return
|
2017-01-19 05:47:56 +01:00
|
|
|
}
|
2018-10-14 18:21:31 +02:00
|
|
|
log.Printf("[INFO] backend/local: plan operation completed")
|
2017-01-19 05:47:56 +01: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 19:33:53 +02:00
|
|
|
diags = diags.Append(planDiags)
|
|
|
|
if planDiags.HasErrors() {
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2017-12-02 23:31:28 +01:00
|
|
|
return
|
|
|
|
}
|
2020-07-27 22:35:55 +02:00
|
|
|
|
2020-05-27 01:59:06 +02:00
|
|
|
// Record whether this plan includes any side-effects that could be applied.
|
2020-10-12 17:55:01 +02:00
|
|
|
runningOp.PlanEmpty = plan.Changes.Empty()
|
2017-01-19 05:47:56 +01:00
|
|
|
|
|
|
|
// Save the plan to disk
|
|
|
|
if path := op.PlanOutPath; path != "" {
|
2018-10-09 21:19:24 +02:00
|
|
|
if op.PlanOutBackend == nil {
|
|
|
|
// This is always a bug in the operation caller; it's not valid
|
|
|
|
// to set PlanOutPath without also setting PlanOutBackend.
|
2018-10-31 16:45:03 +01:00
|
|
|
diags = diags.Append(fmt.Errorf(
|
|
|
|
"PlanOutPath set without also setting PlanOutBackend (this is a bug in Terraform)"),
|
|
|
|
)
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2018-10-09 21:19:24 +02:00
|
|
|
return
|
2018-09-29 00:57:27 +02:00
|
|
|
}
|
2018-10-09 21:19:24 +02:00
|
|
|
plan.Backend = *op.PlanOutBackend
|
2017-01-19 05:47:56 +01:00
|
|
|
|
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 23:24:45 +02:00
|
|
|
// We may have updated the state in the refresh step above, but we
|
|
|
|
// will freeze that updated state in the plan file for now and
|
|
|
|
// only write it if this plan is subsequently applied.
|
2020-07-27 22:35:55 +02:00
|
|
|
plannedStateFile := statemgr.PlannedStateUpdate(opState, plan.State)
|
2017-03-20 18:05:24 +01:00
|
|
|
|
2017-01-19 05:47:56 +01:00
|
|
|
log.Printf("[INFO] backend/local: writing plan output to: %s", path)
|
2018-10-31 16:45:03 +01:00
|
|
|
err := planfile.Create(path, configSnap, plannedStateFile, plan)
|
2017-01-19 05:47:56 +01:00
|
|
|
if err != nil {
|
2018-03-21 02:43:02 +01:00
|
|
|
diags = diags.Append(tfdiags.Sourceless(
|
|
|
|
tfdiags.Error,
|
|
|
|
"Failed to write plan file",
|
|
|
|
fmt.Sprintf("The plan file could not be written: %s.", err),
|
|
|
|
))
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ReportResult(runningOp, diags)
|
2017-01-19 05:47:56 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Perform some output tasks if we have a CLI to output to.
|
|
|
|
if b.CLI != nil {
|
2018-08-29 21:12:18 +02:00
|
|
|
schemas := tfCtx.Schemas()
|
|
|
|
|
2020-05-27 01:59:06 +02:00
|
|
|
if runningOp.PlanEmpty {
|
2017-09-01 04:19:06 +02:00
|
|
|
b.CLI.Output("\n" + b.Colorize().Color(strings.TrimSpace(planNoChanges)))
|
2021-01-12 03:29:39 +01:00
|
|
|
b.CLI.Output("\n" + strings.TrimSpace(format.WordWrap(planNoChangesDetail, outputColumns)))
|
2020-02-20 00:59:15 +01:00
|
|
|
// Even if there are no changes, there still could be some warnings
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ShowDiagnostics(diags)
|
2017-01-19 05:47:56 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-10-12 17:55:01 +02:00
|
|
|
b.renderPlan(plan, plan.State, schemas)
|
2017-09-01 04:19:06 +02:00
|
|
|
|
2018-03-21 02:43:02 +01:00
|
|
|
// If we've accumulated any warnings along the way then we'll show them
|
|
|
|
// here just before we show the summary and next steps. If we encountered
|
|
|
|
// errors then we would've returned early at some other point above.
|
2021-02-12 19:59:14 +01:00
|
|
|
op.ShowDiagnostics(diags)
|
2018-03-21 02:43:02 +01:00
|
|
|
|
2017-09-09 02:14:37 +02:00
|
|
|
// Give the user some next-steps, unless we're running in an automation
|
|
|
|
// tool which is presumed to provide its own UI for further actions.
|
|
|
|
if !b.RunningInAutomation {
|
|
|
|
|
2021-01-12 03:29:39 +01:00
|
|
|
b.outputHorizRule()
|
2017-09-09 02:14:37 +02:00
|
|
|
|
|
|
|
if path := op.PlanOutPath; path == "" {
|
|
|
|
b.CLI.Output(fmt.Sprintf(
|
2021-01-12 03:29:39 +01:00
|
|
|
"\n" + strings.TrimSpace(format.WordWrap(planHeaderNoOutput, outputColumns)) + "\n",
|
2017-09-09 02:14:37 +02:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
b.CLI.Output(fmt.Sprintf(
|
2021-01-12 03:29:39 +01:00
|
|
|
"\n"+strings.TrimSpace(format.WordWrap(planHeaderYesOutput, outputColumns))+"\n",
|
2017-09-09 02:14:37 +02:00
|
|
|
path, path,
|
|
|
|
))
|
|
|
|
}
|
2017-01-19 05:47:56 +01:00
|
|
|
}
|
2017-09-01 04:19:06 +02:00
|
|
|
}
|
|
|
|
}
|
2017-01-19 05:47:56 +01:00
|
|
|
|
2020-10-12 17:55:01 +02:00
|
|
|
func (b *Local) renderPlan(plan *plans.Plan, baseState *states.State, schemas *terraform.Schemas) {
|
2021-01-12 03:29:39 +01:00
|
|
|
RenderPlan(plan, baseState, schemas, b.CLI, b.Colorize(), b.outputColumns())
|
2019-11-06 02:20:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RenderPlan renders the given plan to the given UI.
|
|
|
|
//
|
|
|
|
// This is exported only so that the "terraform show" command can re-use it.
|
|
|
|
// Ideally it would be somewhere outside of this backend code so that both
|
|
|
|
// can call into it, but we're leaving it here for now in order to avoid
|
|
|
|
// disruptive refactoring.
|
|
|
|
//
|
|
|
|
// If you find yourself wanting to call this function from a third callsite,
|
|
|
|
// please consider whether it's time to do the more disruptive refactoring
|
|
|
|
// so that something other than the local backend package is offering this
|
|
|
|
// functionality.
|
2020-05-27 01:59:06 +02:00
|
|
|
//
|
|
|
|
// The difference between baseState and priorState is that baseState is the
|
|
|
|
// result of implicitly running refresh (unless that was disabled) while
|
|
|
|
// priorState is a snapshot of the state as it was before we took any actions
|
|
|
|
// at all. priorState can optionally be nil if the caller has only a saved
|
|
|
|
// plan and not the prior state it was built from. In that case, changes to
|
|
|
|
// output values will not currently be rendered because their prior values
|
|
|
|
// are currently stored only in the prior state. (see the docstring for
|
|
|
|
// func planHasSideEffects for why this is and when that might change)
|
2021-01-12 03:29:39 +01:00
|
|
|
func RenderPlan(plan *plans.Plan, baseState *states.State, schemas *terraform.Schemas, ui cli.Ui, colorize *colorstring.Colorize, width int) {
|
2018-08-29 21:12:18 +02:00
|
|
|
counts := map[plans.Action]int{}
|
2018-12-12 17:01:18 +01:00
|
|
|
var rChanges []*plans.ResourceInstanceChangeSrc
|
2018-08-29 21:12:18 +02:00
|
|
|
for _, change := range plan.Changes.Resources {
|
2018-12-12 17:01:18 +01:00
|
|
|
if change.Action == plans.Delete && change.Addr.Resource.Resource.Mode == addrs.DataResourceMode {
|
|
|
|
// Avoid rendering data sources on deletion
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
rChanges = append(rChanges, change)
|
2018-08-29 21:12:18 +02:00
|
|
|
counts[change.Action]++
|
|
|
|
}
|
2017-01-19 05:47:56 +01:00
|
|
|
|
2017-09-01 04:19:06 +02:00
|
|
|
headerBuf := &bytes.Buffer{}
|
2021-01-12 03:29:39 +01:00
|
|
|
fmt.Fprintf(headerBuf, "\n%s\n", strings.TrimSpace(format.WordWrap(planHeaderIntro, width)))
|
2018-08-29 21:12:18 +02:00
|
|
|
if counts[plans.Create] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s create\n", format.DiffActionSymbol(plans.Create))
|
2017-09-01 04:19:06 +02:00
|
|
|
}
|
2018-08-29 21:12:18 +02:00
|
|
|
if counts[plans.Update] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s update in-place\n", format.DiffActionSymbol(plans.Update))
|
2017-09-01 04:19:06 +02:00
|
|
|
}
|
2018-08-29 21:12:18 +02:00
|
|
|
if counts[plans.Delete] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s destroy\n", format.DiffActionSymbol(plans.Delete))
|
2017-01-19 05:47:56 +01:00
|
|
|
}
|
2018-09-22 02:08:52 +02:00
|
|
|
if counts[plans.DeleteThenCreate] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s destroy and then create replacement\n", format.DiffActionSymbol(plans.DeleteThenCreate))
|
2017-09-01 04:19:06 +02:00
|
|
|
}
|
2018-09-22 02:08:52 +02:00
|
|
|
if counts[plans.CreateThenDelete] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s create replacement and then destroy\n", format.DiffActionSymbol(plans.CreateThenDelete))
|
2018-09-22 02:08:52 +02:00
|
|
|
}
|
2018-08-29 21:12:18 +02:00
|
|
|
if counts[plans.Read] > 0 {
|
2018-12-14 14:45:47 +01:00
|
|
|
fmt.Fprintf(headerBuf, "%s read (data resources)\n", format.DiffActionSymbol(plans.Read))
|
2017-09-01 04:19:06 +02:00
|
|
|
}
|
|
|
|
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output(colorize.Color(headerBuf.String()))
|
2017-09-01 04:19:06 +02:00
|
|
|
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output("Terraform will perform the following actions:\n")
|
2017-09-01 04:19:06 +02:00
|
|
|
|
2018-08-30 03:18:49 +02:00
|
|
|
// Note: we're modifying the backing slice of this plan object in-place
|
|
|
|
// here. The ordering of resource changes in a plan is not significant,
|
|
|
|
// but we can only do this safely here because we can assume that nobody
|
|
|
|
// is concurrently modifying our changes while we're trying to print it.
|
|
|
|
sort.Slice(rChanges, func(i, j int) bool {
|
|
|
|
iA := rChanges[i].Addr
|
|
|
|
jA := rChanges[j].Addr
|
|
|
|
if iA.String() == jA.String() {
|
|
|
|
return rChanges[i].DeposedKey < rChanges[j].DeposedKey
|
|
|
|
}
|
|
|
|
return iA.Less(jA)
|
|
|
|
})
|
|
|
|
|
|
|
|
for _, rcs := range rChanges {
|
2018-08-29 21:12:18 +02:00
|
|
|
if rcs.Action == plans.NoOp {
|
|
|
|
continue
|
|
|
|
}
|
2020-02-03 14:18:04 +01:00
|
|
|
|
2020-02-13 21:32:58 +01:00
|
|
|
providerSchema := schemas.ProviderSchema(rcs.ProviderAddr.Provider)
|
2018-08-29 21:12:18 +02:00
|
|
|
if providerSchema == nil {
|
|
|
|
// Should never happen
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output(fmt.Sprintf("(schema missing for %s)\n", rcs.ProviderAddr))
|
2018-08-29 21:12:18 +02:00
|
|
|
continue
|
|
|
|
}
|
2018-11-28 00:30:18 +01:00
|
|
|
rSchema, _ := providerSchema.SchemaForResourceAddr(rcs.Addr.Resource.Resource)
|
2018-08-29 21:12:18 +02:00
|
|
|
if rSchema == nil {
|
|
|
|
// Should never happen
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output(fmt.Sprintf("(schema missing for %s)\n", rcs.Addr))
|
2018-08-29 21:12:18 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-03-06 01:18:55 +01:00
|
|
|
|
|
|
|
// check if the change is due to a tainted resource
|
|
|
|
tainted := false
|
2020-05-27 01:59:06 +02:00
|
|
|
if !baseState.Empty() {
|
|
|
|
if is := baseState.ResourceInstance(rcs.Addr); is != nil {
|
2019-06-03 23:50:32 +02:00
|
|
|
if obj := is.GetGeneration(rcs.DeposedKey.Generation()); obj != nil {
|
|
|
|
tainted = obj.Status == states.ObjectTainted
|
|
|
|
}
|
2019-03-06 01:18:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output(format.ResourceChange(
|
2018-08-29 21:12:18 +02:00
|
|
|
rcs,
|
2019-03-06 01:18:55 +01:00
|
|
|
tainted,
|
2018-08-29 21:12:18 +02:00
|
|
|
rSchema,
|
2019-11-06 02:20:26 +01:00
|
|
|
colorize,
|
2018-08-29 21:12:18 +02:00
|
|
|
))
|
|
|
|
}
|
2017-09-01 04:19:06 +02:00
|
|
|
|
2018-08-29 21:12:18 +02:00
|
|
|
// stats is similar to counts above, but:
|
|
|
|
// - it considers only resource changes
|
|
|
|
// - it simplifies "replace" into both a create and a delete
|
|
|
|
stats := map[plans.Action]int{}
|
2018-08-30 03:18:49 +02:00
|
|
|
for _, change := range rChanges {
|
2018-08-29 21:12:18 +02:00
|
|
|
switch change.Action {
|
2018-09-22 02:08:52 +02:00
|
|
|
case plans.CreateThenDelete, plans.DeleteThenCreate:
|
2018-08-30 03:18:49 +02:00
|
|
|
stats[plans.Create]++
|
|
|
|
stats[plans.Delete]++
|
2018-08-29 21:12:18 +02:00
|
|
|
default:
|
2018-08-30 03:18:49 +02:00
|
|
|
stats[change.Action]++
|
2018-08-29 21:12:18 +02:00
|
|
|
}
|
|
|
|
}
|
2019-11-06 02:20:26 +01:00
|
|
|
ui.Output(colorize.Color(fmt.Sprintf(
|
2017-09-01 04:19:06 +02:00
|
|
|
"[reset][bold]Plan:[reset] "+
|
|
|
|
"%d to add, %d to change, %d to destroy.",
|
2018-08-29 21:12:18 +02:00
|
|
|
stats[plans.Create], stats[plans.Update], stats[plans.Delete],
|
2017-09-01 04:19:06 +02:00
|
|
|
)))
|
2020-05-27 01:59:06 +02:00
|
|
|
|
|
|
|
// If there is at least one planned change to the root module outputs
|
2020-10-12 17:55:01 +02:00
|
|
|
// then we'll render a summary of those too.
|
2020-11-02 16:22:37 +01:00
|
|
|
var changedRootModuleOutputs []*plans.OutputChangeSrc
|
|
|
|
for _, output := range plan.Changes.Outputs {
|
|
|
|
if !output.Addr.Module.IsRoot() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if output.ChangeSrc.Action == plans.NoOp {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
changedRootModuleOutputs = append(changedRootModuleOutputs, output)
|
|
|
|
}
|
|
|
|
if len(changedRootModuleOutputs) > 0 {
|
|
|
|
ui.Output(colorize.Color("[reset]\n[bold]Changes to Outputs:[reset]" + format.OutputChanges(changedRootModuleOutputs, colorize)))
|
2020-05-27 01:59:06 +02:00
|
|
|
}
|
2017-01-19 05:47:56 +01:00
|
|
|
}
|
|
|
|
|
2017-09-01 04:19:06 +02:00
|
|
|
const planHeaderIntro = `
|
2021-01-12 03:29:39 +01:00
|
|
|
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
|
2017-09-01 04:19:06 +02:00
|
|
|
`
|
|
|
|
|
2017-01-19 05:47:56 +01:00
|
|
|
const planHeaderNoOutput = `
|
2021-01-12 03:29:39 +01:00
|
|
|
Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply" now.
|
2017-01-19 05:47:56 +01:00
|
|
|
`
|
|
|
|
|
|
|
|
const planHeaderYesOutput = `
|
2021-01-12 03:29:39 +01:00
|
|
|
Saved the plan to: %s
|
2017-01-19 05:47:56 +01:00
|
|
|
|
2017-09-01 04:19:06 +02:00
|
|
|
To perform exactly these actions, run the following command to apply:
|
|
|
|
terraform apply %q
|
2017-01-19 05:47:56 +01:00
|
|
|
`
|
|
|
|
|
|
|
|
const planNoChanges = `
|
|
|
|
[reset][bold][green]No changes. Infrastructure is up-to-date.[reset][green]
|
2021-01-12 03:29:39 +01:00
|
|
|
`
|
2017-01-19 05:47:56 +01:00
|
|
|
|
2021-01-12 03:29:39 +01:00
|
|
|
const planNoChangesDetail = `
|
|
|
|
That Terraform did not detect any differences between your configuration and the remote system(s). As a result, there are no actions to take.
|
2017-01-19 05:47:56 +01:00
|
|
|
`
|