This repository was archived by the owner on Jan 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathterraform.go
326 lines (304 loc) · 9.93 KB
/
terraform.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
package instance // import "github.com/docker/infrakit/pkg/provider/terraform/instance"
import (
"bufio"
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"regexp"
"strconv"
"strings"
"sync"
"github.com/docker/infrakit/pkg/util/exec"
"github.com/spf13/afero"
)
type tf interface {
doTerraformStateList() (map[TResourceType]map[TResourceName]struct{}, error)
doTerraformRefresh() error
doTerraformApply() error
doTerraformShow([]TResourceType, []string) (result map[TResourceType]map[TResourceName]TResourceProperties, err error)
doTerraformShowForInstance(string) (result TResourceProperties, err error)
doTerraformImport(afero.Fs, TResourceType, string, string, bool) error
doTerraformStateRemove(TResourceType, string) error
}
// terraformLookup returns a tf struct based on the currently installed version of terraform
func terraformLookup(dir string, envs []string) (tf, error) {
command := exec.Command("terraform version").
InheritEnvs(true).
WithEnvs(envs...).
WithDir(dir)
versionRegex := regexp.MustCompile("^Terraform v([0-9]*).([0-9]*).([0-9]*)$")
major, minor := -1, -1
command.StartWithHandlers(
nil,
func(r io.Reader) error {
reader := bufio.NewReader(r)
lines := []string{}
for {
lineBytes, _, err := reader.ReadLine()
if err != nil {
break
}
line := string(lineBytes)
lines = append(lines, line)
if m := versionRegex.FindAllStringSubmatch(line, -1); len(m) > 0 {
logger.Info("terraformLookup", "Version", line)
if v, err := strconv.Atoi(m[0][1]); err == nil {
major = v
} else {
logger.Error("terraformLookup", "Failed to parse major version", "value", m[0][1], "error", err)
}
if v, err := strconv.Atoi(m[0][2]); err == nil {
minor = v
} else {
logger.Error("terraformLookup", "Failed to parse minor version", "value", m[0][2], "error", err)
}
}
}
if major == -1 || minor == -1 {
logger.Error("Failed to determine terraform version", "output", lines)
}
return nil
},
nil)
if err := command.Wait(); err != nil {
return nil, err
}
// Unable to retrieve the version
if major == -1 || minor == -1 {
return nil, fmt.Errorf("Unable to determine terraform version")
}
// Only support v0.9+
if major != 0 {
return nil, fmt.Errorf("Unsupported major version: %d", major)
}
// Version 0.9.x
if minor == 9 {
return &terraformBase{dir: dir, envs: envs}, nil
}
// Version 0.10.x and above
if minor >= 10 {
return &terraformV10{
terraformBase: terraformBase{dir: dir, envs: envs},
initLock: sync.Mutex{},
initCompleted: false,
}, nil
}
return nil, fmt.Errorf("Unsupported minor version: %d", minor)
}
// terraformBase is base implementation and is compatible with terravorm v0.9.x
type terraformBase struct {
envs []string
dir string
}
// terraformV10 is the implementation that is compatible with terraform v.0.10.x+
type terraformV10 struct {
terraformBase
initLock sync.Mutex
initCompleted bool
}
// doTerraformStateList shells out to run `terraform state list` and parses the result
func (tf *terraformBase) doTerraformStateList() (map[TResourceType]map[TResourceName]struct{}, error) {
result := map[TResourceType]map[TResourceName]struct{}{}
command := exec.Command("terraform state list -no-color").
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
command.StartWithHandlers(
nil,
func(r io.Reader) error {
reader := bufio.NewReader(r)
for {
lineBytes, _, err := reader.ReadLine()
if err != nil {
break
}
line := string(lineBytes)
logger.Debug("doTerraformStateList", "output", line, "V", debugV3)
// Every line should have <resource-type>.<resource-name>
if !strings.Contains(line, ".") {
logger.Error("doTerraformStateList", "msg", "Invalid line from 'terraform state list'", "line", line)
continue
}
split := strings.Split(strings.TrimSpace(line), ".")
resType := TResourceType(split[0])
resName := TResourceName(split[1])
if resourceMap, has := result[resType]; has {
resourceMap[resName] = struct{}{}
} else {
result[resType] = map[TResourceName]struct{}{resName: {}}
}
}
return nil
},
nil)
err := command.Wait()
return result, err
}
// doTerraformRefresh executes "terraform refresh"
func (tf *terraformBase) doTerraformRefresh() error {
logger.Info("doTerraformRefresh")
command := exec.Command("terraform refresh").
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
if err := command.WithStdout(os.Stdout).WithStderr(os.Stdout).Start(); err != nil {
return err
}
return command.Wait()
}
// doTerraformApply executes "terraform apply".
// Version 0.9.x does not not require additional CLI options.
func (tf *terraformBase) doTerraformApply() error {
return internalTerraformApply(tf.envs, tf.dir)
}
// doTerraformApply executes "terraform apply"
// Version 0.10.+ requires the -auto-approve=true CLI option.
func (tf *terraformV10) doTerraformApply() error {
tf.doTerraformInit()
return internalTerraformApply(tf.envs, tf.dir, "-auto-approve=true")
}
// internalTerraformApply executes terraform apply with the given additional parameters
func internalTerraformApply(envs []string, dir string, params ...string) error {
logger.Info("doTerraformApply", "msg", "Applying plan")
c := []string{"terraform", "apply", "-refresh=false", "-input=false"}
c = append(c, params...)
command := exec.Command(strings.Join(c, " ")).
InheritEnvs(true).
WithEnvs(envs...).
WithDir(dir)
if err := command.WithStdout(os.Stdout).WithStderr(os.Stdout).Start(); err != nil {
return err
}
return command.Wait()
}
// doTerraformShow shells out to run `terraform show` and parses the result
func (tf *terraformBase) doTerraformShow(resTypes []TResourceType,
propFilter []string) (result map[TResourceType]map[TResourceName]TResourceProperties, err error) {
command := exec.Command("terraform show -no-color").
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
command.StartWithHandlers(
nil,
func(r io.Reader) error {
found, err := parseTerraformShowOutput(resTypes, propFilter, r)
result = found
return err
},
nil)
err = command.Wait()
return
}
// doTerraformShowForInstance shells out to run `terraform state show <instance>` and parses the result
func (tf *terraformBase) doTerraformShowForInstance(instance string) (result TResourceProperties, err error) {
command := exec.Command(fmt.Sprintf("terraform state show %v -no-color", instance)).
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
command.StartWithHandlers(
nil,
func(r io.Reader) error {
props, err := parseTerraformShowForInstanceOutput(r)
result = props
return err
},
nil)
err = command.Wait()
return
}
// doTerraformImport shells out to run `terraform import`
// Version 0.9.x does not require the input resource file to be created prior to the import.
func (tf *terraformBase) doTerraformImport(fs afero.Fs, resType TResourceType, resName, id string, createDummyFile bool) error {
return internalTerraformImport(tf.envs, tf.dir, resType, resName, id)
}
// doTerraformImport shells out to run `terraform import`
// Version 0.10.+ requires the input resource file to be created prior to the import.
func (tf *terraformV10) doTerraformImport(fs afero.Fs, resType TResourceType, resName, id string, createDummyFile bool) error {
// The resource file does not need the actual properties, so just create a dummy file
// with the minimum data. This file can be immediately removed post-import.
if createDummyFile {
tFormat := TFormat{
Resource: map[TResourceType]map[TResourceName]TResourceProperties{
resType: {
TResourceName(resName): {},
},
},
}
buff, err := json.MarshalIndent(tFormat, " ", " ")
if err != nil {
return err
}
path := filepath.Join(tf.dir, "import-resource.tf.json")
err = afero.WriteFile(fs, path, buff, 0644)
if err != nil {
return err
}
defer func() {
fs.Remove(path)
}()
}
tf.doTerraformInit()
return internalTerraformImport(tf.envs, tf.dir, resType, resName, id)
}
// internalTerraformImport shells out to run `terraform import`
func internalTerraformImport(envs []string, dir string, resType TResourceType, resName, id string) error {
logger.Info("internalTerraformImport")
command := exec.Command(fmt.Sprintf("terraform import %v.%v %s", resType, resName, id)).
InheritEnvs(true).
WithEnvs(envs...).
WithDir(dir)
if err := command.WithStdout(os.Stdout).WithStderr(os.Stdout).Start(); err != nil {
return err
}
return command.Wait()
}
// doTerraformStateRemove removes the resource from the terraform state file
func (tf *terraformBase) doTerraformStateRemove(vmType TResourceType, vmName string) error {
command := exec.Command(fmt.Sprintf("terraform state rm %v.%v", vmType, vmName)).
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
if err := command.WithStdout(os.Stdout).WithStderr(os.Stdout).Start(); err != nil {
return err
}
return command.Wait()
}
// doTerraformInit executes "terraform init" and, if the .terraform directory has been created in
// the working directory, tracks that the initialization has completed
func (tf *terraformV10) doTerraformInit() error {
// Only execute init once
if tf.initCompleted {
return nil
}
tf.initLock.Lock()
defer tf.initLock.Unlock()
if tf.initCompleted {
return nil
}
logger.Info("doTerraformInit")
command := exec.Command("terraform init -input=false").
InheritEnvs(true).
WithEnvs(tf.envs...).
WithDir(tf.dir)
if err := command.WithStdout(os.Stdout).WithStderr(os.Stdout).Start(); err != nil {
return err
}
err := command.Wait()
if err != nil {
return err
}
// If there are no config files then nothign was initialized, only mark that init
// compelte if the .terraform direction was created
path := filepath.Join(tf.terraformBase.dir, ".terraform")
_, err = os.Stat(path)
if err == nil {
tf.initCompleted = true
return nil
}
logger.Warn("Failed to initalize terraform, .terraform directory was not created",
"path", path,
"error", err)
return nil
}