forked from hashicorp/terraform-exec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrefresh.go
137 lines (113 loc) · 3.05 KB
/
refresh.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
package tfexec
import (
"context"
"os/exec"
"strconv"
)
type refreshConfig struct {
backup string
dir string
lock bool
lockTimeout string
reattachInfo ReattachInfo
state string
stateOut string
targets []string
vars []string
varFiles []string
}
var defaultRefreshOptions = refreshConfig{
lock: true,
lockTimeout: "0s",
}
// RefreshCmdOption represents options used in the Refresh method.
type RefreshCmdOption interface {
configureRefresh(*refreshConfig)
}
func (opt *BackupOption) configureRefresh(conf *refreshConfig) {
conf.backup = opt.path
}
func (opt *DirOption) configureRefresh(conf *refreshConfig) {
conf.dir = opt.path
}
func (opt *LockOption) configureRefresh(conf *refreshConfig) {
conf.lock = opt.lock
}
func (opt *LockTimeoutOption) configureRefresh(conf *refreshConfig) {
conf.lockTimeout = opt.timeout
}
func (opt *ReattachOption) configureRefresh(conf *refreshConfig) {
conf.reattachInfo = opt.info
}
func (opt *StateOption) configureRefresh(conf *refreshConfig) {
conf.state = opt.path
}
func (opt *StateOutOption) configureRefresh(conf *refreshConfig) {
conf.stateOut = opt.path
}
func (opt *TargetOption) configureRefresh(conf *refreshConfig) {
conf.targets = append(conf.targets, opt.target)
}
func (opt *VarOption) configureRefresh(conf *refreshConfig) {
conf.vars = append(conf.vars, opt.assignment)
}
func (opt *VarFileOption) configureRefresh(conf *refreshConfig) {
conf.varFiles = append(conf.varFiles, opt.path)
}
// Refresh represents the terraform refresh subcommand.
func (tf *Terraform) Refresh(ctx context.Context, opts ...RefreshCmdOption) error {
cmd, err := tf.refreshCmd(ctx, opts...)
if err != nil {
return err
}
return tf.runTerraformCmd(ctx, cmd)
}
func (tf *Terraform) refreshCmd(ctx context.Context, opts ...RefreshCmdOption) (*exec.Cmd, error) {
c := defaultRefreshOptions
for _, o := range opts {
o.configureRefresh(&c)
}
args := []string{"refresh", "-no-color", "-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))
// 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
}