forked from hashicorp/terraform-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdestroy.go
156 lines (128 loc) · 3.56 KB
/
destroy.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
package tfexec
import (
"context"
"fmt"
"os/exec"
"strconv"
)
type destroyConfig struct {
backup string
dir string
lock bool
// LockTimeout must be a string with time unit, e.g. '10s'
lockTimeout string
parallelism int
reattachInfo ReattachInfo
refresh bool
state string
stateOut string
targets []string
// Vars: each var must be supplied as a single string, e.g. 'foo=bar'
vars []string
varFiles []string
}
var defaultDestroyOptions = destroyConfig{
lock: true,
lockTimeout: "0s",
parallelism: 10,
refresh: true,
}
// DestroyOption represents options used in the Destroy method.
type DestroyOption interface {
configureDestroy(*destroyConfig)
}
func (opt *DirOption) configureDestroy(conf *destroyConfig) {
conf.dir = opt.path
}
func (opt *ParallelismOption) configureDestroy(conf *destroyConfig) {
conf.parallelism = opt.parallelism
}
func (opt *BackupOption) configureDestroy(conf *destroyConfig) {
conf.backup = opt.path
}
func (opt *TargetOption) configureDestroy(conf *destroyConfig) {
conf.targets = append(conf.targets, opt.target)
}
func (opt *LockTimeoutOption) configureDestroy(conf *destroyConfig) {
conf.lockTimeout = opt.timeout
}
func (opt *StateOption) configureDestroy(conf *destroyConfig) {
conf.state = opt.path
}
func (opt *StateOutOption) configureDestroy(conf *destroyConfig) {
conf.stateOut = opt.path
}
func (opt *VarFileOption) configureDestroy(conf *destroyConfig) {
conf.varFiles = append(conf.varFiles, opt.path)
}
func (opt *LockOption) configureDestroy(conf *destroyConfig) {
conf.lock = opt.lock
}
func (opt *RefreshOption) configureDestroy(conf *destroyConfig) {
conf.refresh = opt.refresh
}
func (opt *VarOption) configureDestroy(conf *destroyConfig) {
conf.vars = append(conf.vars, opt.assignment)
}
func (opt *ReattachOption) configureDestroy(conf *destroyConfig) {
conf.reattachInfo = opt.info
}
// Destroy represents the terraform destroy subcommand.
func (tf *Terraform) Destroy(ctx context.Context, opts ...DestroyOption) error {
cmd, err := tf.destroyCmd(ctx, opts...)
if err != nil {
return err
}
return tf.runTerraformCmd(ctx, cmd)
}
func (tf *Terraform) destroyCmd(ctx context.Context, opts ...DestroyOption) (*exec.Cmd, error) {
c := defaultDestroyOptions
for _, o := range opts {
o.configureDestroy(&c)
}
args := []string{"destroy", "-no-color", "-auto-approve", "-input=false"}
// string opts: only pass if set
if c.backup != "" {
args = append(args, "-backup="+c.backup)
}
if c.lockTimeout != "" {
args = append(args, "-lock-timeout="+c.lockTimeout)
}
if c.state != "" {
args = append(args, "-state="+c.state)
}
if c.stateOut != "" {
args = append(args, "-state-out="+c.stateOut)
}
for _, vf := range c.varFiles {
args = append(args, "-var-file="+vf)
}
// boolean and numerical opts: always pass
args = append(args, "-lock="+strconv.FormatBool(c.lock))
args = append(args, "-parallelism="+fmt.Sprint(c.parallelism))
args = append(args, "-refresh="+strconv.FormatBool(c.refresh))
// string slice opts: split into separate args
if c.targets != nil {
for _, ta := range c.targets {
args = append(args, "-target="+ta)
}
}
if c.vars != nil {
for _, v := range c.vars {
args = append(args, "-var", v)
}
}
// optional positional argument
if c.dir != "" {
args = append(args, c.dir)
}
mergeEnv := map[string]string{}
if c.reattachInfo != nil {
reattachStr, err := c.reattachInfo.marshalString()
if err != nil {
return nil, err
}
mergeEnv[reattachEnvVar] = reattachStr
}
return tf.buildTerraformCmd(ctx, mergeEnv, args...), nil
}