-
Notifications
You must be signed in to change notification settings - Fork 4
/
terraform_exec.go
476 lines (436 loc) · 11.6 KB
/
terraform_exec.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
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
package main
import (
"fmt"
"os"
"regexp"
"strings"
"github.com/urfave/cli"
"github.com/nadnerb/cli_command"
"github.com/nadnerb/terraform_config"
"github.com/nadnerb/terraform_exec/security"
"github.com/nadnerb/terraform_exec/sync"
)
func main() {
app := cli.NewApp()
app.Name = ProjectName
app.Usage = Usage
app.Version = Version
app.Flags = []cli.Flag{
cli.BoolFlag{
Name: "verbose",
Usage: "show more output",
},
cli.BoolFlag{
Name: "e, env",
Usage: "load AWS credentials from environment",
},
cli.BoolFlag{
Name: "commit",
Usage: "compiled git commit",
},
}
app.Action = func(ctx *cli.Context) error {
args := ctx.Args()
if ctx.Bool("commit") {
CommitMessage()
} else if args.Present() {
cli.ShowCommandHelp(ctx, args.First())
} else {
cli.ShowAppHelp(ctx)
}
return nil
}
// Commands
app.Commands = []cli.Command{
{
Name: "plan",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "destroy",
Usage: "plan destroy",
},
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform plan",
Action: CmdPlan,
},
{
Name: "apply",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform apply",
Action: CmdApply,
},
{
Name: "destroy",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "force",
Usage: "Force destroy",
},
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform destroy",
Action: CmdDestroy,
},
{
Name: "refresh",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform refresh",
Action: CmdRefresh,
},
{
Name: "taint",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "module",
Usage: "tainted module path",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform taint",
Action: CmdTaint,
},
{
Name: "untaint",
Flags: []cli.Flag{
cli.BoolFlag{
Name: "no-sync",
Usage: "Don't perform initial s3 sync",
},
cli.StringFlag{
Name: "module",
Usage: "tainted module path",
},
cli.StringFlag{
Name: "security",
Usage: "security provider, current options <default>, <aws-internal>",
},
cli.StringFlag{
Name: "security-role",
Usage: "security iam role if using -security=aws-internal security",
},
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "terraform untaint",
Action: CmdUntaint,
},
{
Name: "download",
Flags: []cli.Flag{
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "download existing state to s3",
Action: CmdDownload,
},
{
Name: "upload",
Flags: []cli.Flag{
cli.StringFlag{
Name: "config-location",
Usage: "config location, must be format <location>/<environment>.tfvars",
},
},
Usage: "upload existing state to s3",
Action: CmdUpload,
},
}
app.Run(os.Args)
}
type TerraformOperation struct {
command string
environment string
config *terraform_config.TerraformConfig
extraArgs string
args []string
}
func CmdPlan(c *cli.Context) error {
operation := initialize(c, "plan")
if c.Bool("destroy") {
operation.extraArgs = "-destroy"
}
run(operation)
return nil
}
func CmdApply(c *cli.Context) error {
operation := initialize(c, "apply")
run(operation)
resync(operation)
return nil
}
func CmdTaint(c *cli.Context) error {
operation := initialize(c, "taint")
operation.extraArgs = strings.Join(c.Args()[1:], " ")
run(operation)
resync(operation)
return nil
}
func CmdUntaint(c *cli.Context) error {
operation := initialize(c, "untaint")
operation.extraArgs = strings.Join(c.Args()[1:], " ")
run(operation)
resync(operation)
return nil
}
func CmdRefresh(c *cli.Context) error {
operation := initialize(c, "refresh")
run(operation)
resync(operation)
return nil
}
func CmdDestroy(c *cli.Context) error {
operation := initialize(c, "destroy")
if !c.Bool("force") {
fmt.Println(command.Red("Are you sure you want to destroy your environment?"))
fmt.Println()
if !command.InputAreYouSure() {
fmt.Println(command.Cyan("Terraform destroy cancelled"))
fmt.Println()
os.Exit(0)
}
}
fmt.Println(command.Cyan("Destroying environment"))
fmt.Println()
operation.extraArgs = "-force"
run(operation)
resync(operation)
return nil
}
func initialize(c *cli.Context, terraformCommand string) TerraformOperation {
if len(c.Args()) < 1 {
fmt.Printf("Incorrect usage\n")
fmt.Printf("%s <environment>\n", terraformCommand)
os.Exit(1)
}
fmt.Println(c.Args())
environment := c.Args()[0]
security.Apply(c.String("security"), c)
fmt.Println()
fmt.Println("Execute Terraform command")
fmt.Println("Command: ", command.Bold(terraformCommand))
fmt.Println("Environment:", command.Bold(environment))
fmt.Println()
configLocation := c.String("config-location")
config := terraform_config.LoadConfig(configLocation, environment)
getState(c.Bool("no-sync"), config, environment)
return TerraformOperation{
command: terraformCommand,
environment: environment,
config: config,
args: os.Args[2:],
}
}
func getState(skip bool, config *terraform_config.TerraformConfig, environment string) {
if skip {
fmt.Printf("%s\n", command.Red("Warning: skipping S3 download of current state"))
if command.InputAreYouSure() {
fmt.Println()
fmt.Printf(command.Cyan("Skipped syncing with S3\n"))
fmt.Println()
} else {
DownloadState(config, environment)
}
} else {
DownloadState(config, environment)
}
}
func resync(operation TerraformOperation) {
fmt.Printf("%s\n", command.Green("S3 SYNC new changes"))
UploadState(operation.config, operation.environment)
}
func run(operation TerraformOperation) {
cmdName := "terraform"
cmdArgs := commandArgs(operation)
fmt.Println("---------------------------------------------")
fmt.Println(command.Bold(cmdName), command.Bold(strings.Join(cmdArgs, " ")))
fmt.Println("---------------------------------------------")
fmt.Println()
command.Default().Execute(cmdName, cmdArgs)
fmt.Println()
fmt.Println("---------------------------------------------")
}
func CmdUpload(c *cli.Context) {
if len(c.Args()) != 1 {
fmt.Printf("Incorrect usage\n")
fmt.Printf("upload <environment>\n")
return
}
fmt.Println()
environment := c.Args()[0]
config := terraform_config.LoadConfig(c.String("config-location"), environment)
fmt.Println()
fmt.Println("Upload Terraform state")
fmt.Println("Environment:", command.Bold(environment))
fmt.Println()
fmt.Printf("Upload current project state to s3\n")
if command.InputAreYouSure() {
UploadState(config, environment)
} else {
fmt.Println(command.Red("Aborted"))
}
}
func UploadState(config *terraform_config.TerraformConfig, environment string) {
tfState := config.State_path
s3Key := S3Key(config.S3_key, environment)
fmt.Printf("Uploading project state: %s to: %s/%s\n", command.Green(tfState), command.Green(config.S3_bucket), command.Green(s3Key))
err := sync.Upload(config.Aws_region, config.S3_bucket, s3Key, tfState)
fmt.Println()
if err != nil {
command.Error("Failed to upload", err)
} else {
fmt.Println(command.Green("Uploaded successfully to S3"))
fmt.Println()
}
}
func CmdDownload(c *cli.Context) {
if len(c.Args()) != 1 {
fmt.Printf("Incorrect usage\n")
fmt.Printf("download <environment>\n")
return
}
environment := c.Args()[0]
fmt.Println()
fmt.Println("Download Terraform state")
fmt.Println("Environment:", command.Bold(environment))
fmt.Println()
config := terraform_config.LoadConfig(c.String("config-location"), environment)
DownloadState(config, environment)
}
func DownloadState(config *terraform_config.TerraformConfig, environment string) {
fmt.Println("Syncing project state with S3")
tfState := config.State_path
s3Key := S3Key(config.S3_key, environment)
fmt.Printf("Downloading project state: %s/%s to: %s\n", command.Cyan(config.S3_bucket), command.Cyan(s3Key), command.Cyan(tfState))
err := sync.Download(config.Aws_region, config.S3_bucket, s3Key, tfState)
fmt.Println()
if err != nil {
command.Warn("Failed to download", err)
if !command.InputAffirmative("Continue without using syncronised state?") {
fmt.Println(command.Cyan("Operation cancelled"))
os.Exit(0)
}
} else {
fmt.Println(command.Green("Downloaded successfully from S3"))
}
fmt.Println()
}
func S3Key(keyName string, environment string) string {
return fmt.Sprintf("%s/tfstate/%s/terraform.tfstate", keyName, environment)
}
func terraformArgs(arguments []string) string {
args := filter(arguments, func(s string) bool {
match, _ := regexp.MatchString("^-([a-z]+).*", s)
return match
})
return strings.Join(args, " ")
}
func filter(s []string, fn func(string) bool) []string {
var p []string // == nil
for _, v := range s {
if fn(v) {
p = append(p, v)
}
}
return p
}
func commandArgs(operation TerraformOperation) []string {
cmdArgs := []string{
operation.command,
"-var-file", operation.config.Tf_vars,
fmt.Sprintf("-state=%s", operation.config.State_path),
"-var", fmt.Sprintf("environment=%s", operation.environment),
"-var", fmt.Sprintf("config_location=%s", operation.config.Config_path),
}
args := terraformArgs(operation.args)
if args != "" {
cmdArgs = append(cmdArgs, args)
}
if operation.extraArgs != "" {
cmdArgs = append(cmdArgs, operation.extraArgs)
}
return cmdArgs
}