]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/hashicorp/terraform/terraform/eval_check_prevent_destroy.go
Upgrade to 0.12
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / hashicorp / terraform / terraform / eval_check_prevent_destroy.go
CommitLineData
bae9f6d2
JC
1package terraform
2
3import (
4 "fmt"
5
107c1cdb
ND
6 "github.com/hashicorp/terraform/plans"
7
8 "github.com/hashicorp/hcl2/hcl"
9
10 "github.com/hashicorp/terraform/addrs"
11 "github.com/hashicorp/terraform/configs"
12 "github.com/hashicorp/terraform/tfdiags"
bae9f6d2
JC
13)
14
15// EvalPreventDestroy is an EvalNode implementation that returns an
16// error if a resource has PreventDestroy configured and the diff
17// would destroy the resource.
18type EvalCheckPreventDestroy struct {
107c1cdb
ND
19 Addr addrs.ResourceInstance
20 Config *configs.Resource
21 Change **plans.ResourceInstanceChange
bae9f6d2
JC
22}
23
24func (n *EvalCheckPreventDestroy) Eval(ctx EvalContext) (interface{}, error) {
107c1cdb 25 if n.Change == nil || *n.Change == nil || n.Config == nil || n.Config.Managed == nil {
bae9f6d2
JC
26 return nil, nil
27 }
28
107c1cdb
ND
29 change := *n.Change
30 preventDestroy := n.Config.Managed.PreventDestroy
31
32 if (change.Action == plans.Delete || change.Action.IsReplace()) && preventDestroy {
33 var diags tfdiags.Diagnostics
34 diags = diags.Append(&hcl.Diagnostic{
35 Severity: hcl.DiagError,
36 Summary: "Instance cannot be destroyed",
37 Detail: fmt.Sprintf(
38 "Resource %s has lifecycle.prevent_destroy set, but the plan calls for this resource to be destroyed. To avoid this error and continue with the plan, either disable lifecycle.prevent_destroy or reduce the scope of the plan using the -target flag.",
39 n.Addr.Absolute(ctx.Path()).String(),
40 ),
41 Subject: &n.Config.DeclRange,
42 })
43 return nil, diags.Err()
bae9f6d2
JC
44 }
45
46 return nil, nil
47}
48
49const preventDestroyErrStr = `%s: the plan would destroy this resource, but it currently has lifecycle.prevent_destroy set to true. To avoid this error and continue with the plan, either disable lifecycle.prevent_destroy or adjust the scope of the plan using the -target flag.`