-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathresource_vagrant_vm.go
400 lines (343 loc) · 9.9 KB
/
resource_vagrant_vm.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
package main
import (
"fmt"
"os"
"github.com/bmatcuk/go-vagrant"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"context"
"io/ioutil"
"log"
"path/filepath"
"sort"
"strconv"
"strings"
"time"
)
func resourceVagrantVM() *schema.Resource {
return &schema.Resource{
Description: "Integrate vagrant into terraform.",
CreateContext: resourceVagrantVMCreate,
ReadContext: resourceVagrantVMRead,
UpdateContext: resourceVagrantVMUpdate,
DeleteContext: resourceVagrantVMDelete,
CustomizeDiff: customdiff.All(
customdiff.ForceNewIfChange("name", func(ctx context.Context, old, new, meta interface{}) bool {
return old != new
}),
),
SchemaVersion: 1,
Schema: map[string]*schema.Schema{
"name": {
Description: "Name of the Vagrant resource. Forces resource to destroy/recreate if changed.",
Type: schema.TypeString,
Optional: true,
Default: "vagrantbox",
},
"vagrantfile_dir": {
Description: "Path to the directory where the Vagrantfile can be found.",
Type: schema.TypeString,
Optional: true,
Default: ".",
ValidateFunc: resourceVagrantVMPathToVagrantfileValidate,
},
"env": {
Description: "Environment variables to pass to the Vagrantfile.",
Type: schema.TypeMap,
Optional: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"get_ports": {
Description: "Whether or not to retrieve forwarded port information. See `ports`.",
Type: schema.TypeBool,
Optional: true,
Default: false,
},
"machine_names": {
Description: "Names of the vagrant machines from the Vagrantfile. Names are in the same order as ssh_config.",
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{
Type: schema.TypeString,
},
},
"ssh_config": {
Description: "SSH connection information.",
Type: schema.TypeList,
Computed: true,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"type": {
Description: "Connection type. Only valid option is ssh at this time.",
Type: schema.TypeString,
Computed: true,
},
"user": {
Description: "The user for the connection.",
Type: schema.TypeString,
Computed: true,
},
"host": {
Description: "The address of the resource to connect to.",
Type: schema.TypeString,
Computed: true,
},
"port": {
Description: "The port to connect to.",
Type: schema.TypeString,
Computed: true,
},
"private_key": {
Description: "Private SSH key for the connection.",
Type: schema.TypeString,
Computed: true,
},
"agent": {
Description: "Whether or not to use the agent to authenticate.",
Type: schema.TypeString,
Computed: true,
},
},
},
},
"ports": {
Description: "Forwarded ports per machine. Only set if `get_ports` is true.",
Type: schema.TypeList,
Computed: true,
Elem: &schema.Schema{
Type: schema.TypeList,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"guest": {
Description: "The port on the guest machine.",
Type: schema.TypeInt,
Computed: true,
},
"host": {
Description: "The port on the host machine which maps to the guest port.",
Type: schema.TypeInt,
Computed: true,
},
},
},
},
},
},
}
}
func resourceVagrantVMCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
ctx, cancelFunc := contextWithTimeout(ctx, d.Timeout(schema.TimeoutCreate))
defer cancelFunc()
client, err := vagrant.NewVagrantClient(d.Get("vagrantfile_dir").(string))
if err != nil {
return diag.FromErr(err)
}
log.Println("Bringing up vagrant...")
cmd := client.Up()
cmd.Context = ctx
cmd.Env = buildEnvironment(d.Get("env").(map[string]interface{}))
cmd.Parallel = true
cmd.Verbose = true
if err := cmd.Run(); err != nil {
return diag.FromErr(err)
}
d.SetId(buildId(cmd.VMInfo))
return readVagrantInfo(ctx, client, d)
}
func resourceVagrantVMRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
ctx, cancelFunc := contextWithTimeout(ctx, d.Timeout(schema.TimeoutRead))
defer cancelFunc()
client, err := vagrant.NewVagrantClient(d.Get("vagrantfile_dir").(string))
if err != nil {
return diag.FromErr(err)
}
exists, err := checkIfVMExists(ctx, client, d)
if err != nil {
return diag.FromErr(err)
} else if !exists {
// this will force terraform to run create again
d.SetId("")
return nil
}
return readVagrantInfo(ctx, client, d)
}
func resourceVagrantVMUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
ctx, cancelFunc := contextWithTimeout(ctx, d.Timeout(schema.TimeoutUpdate))
defer cancelFunc()
client, err := vagrant.NewVagrantClient(d.Get("vagrantfile_dir").(string))
if err != nil {
return diag.FromErr(err)
}
env := buildEnvironment(d.Get("env").(map[string]interface{}))
// reload will halt any running machines, then destroy any halted or
// suspended machines, and bring them back up
log.Println("Reloading vagrant...")
reload := client.Reload()
reload.Context = ctx
reload.Env = env
reload.Verbose = true
if err := reload.Run(); err != nil {
return diag.FromErr(err)
}
// reload will not bring up new machines, so bring them up here...
log.Println("Checking machine states...")
status := client.Status()
status.Context = ctx
status.Env = env
status.Verbose = true
if err := status.Run(); err != nil {
return diag.FromErr(err)
}
allExist := true
for _, state := range status.Status {
if state == "not_created" {
allExist = false
break
}
}
if !allExist {
log.Println("Bringing up new machines...")
up := client.Up()
up.Context = ctx
up.Env = env
up.Parallel = true
up.Verbose = true
if err := up.Run(); err != nil {
return diag.FromErr(err)
}
}
// we're done!
return readVagrantInfo(ctx, client, d)
}
func resourceVagrantVMDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics {
ctx, cancelFunc := contextWithTimeout(ctx, d.Timeout(schema.TimeoutDelete))
defer cancelFunc()
client, err := vagrant.NewVagrantClient(d.Get("vagrantfile_dir").(string))
if err != nil {
return diag.FromErr(err)
}
log.Println("Destroying vagrant...")
cmd := client.Destroy()
cmd.Context = ctx
cmd.Env = buildEnvironment(d.Get("env").(map[string]interface{}))
cmd.Verbose = true
err = cmd.Run()
if err != nil {
return diag.FromErr(err)
}
return nil
}
func resourceVagrantVMPathToVagrantfileValidate(val interface{}, key string) ([]string, []error) {
path := filepath.Join(val.(string), "Vagrantfile")
if _, err := os.Stat(path); err != nil {
return nil, []error{err}
}
return nil, nil
}
func contextWithTimeout(ctx context.Context, timeout time.Duration) (context.Context, context.CancelFunc) {
if int64(timeout) > 0 {
return context.WithTimeout(ctx, timeout)
}
return ctx, func() {}
}
func buildId(info map[string]*vagrant.VMInfo) string {
var keys sort.StringSlice = make([]string, len(info)+1)
keys[0] = "vagrant"
i := 1
for key := range info {
keys[i] = key
i++
}
keys[1:].Sort()
return strings.Join(keys, ":")
}
func checkIfVMExists(ctx context.Context, client *vagrant.VagrantClient, d *schema.ResourceData) (bool, error) {
log.Println("Getting vagrant status...")
cmd := client.Status()
cmd.Context = ctx
cmd.Env = buildEnvironment(d.Get("env").(map[string]interface{}))
cmd.Verbose = true
if err := cmd.Run(); err != nil {
return false, err
}
// if any machines are not running, then let's say they don't exist
exists := true
for _, status := range cmd.Status {
if status != "running" {
exists = false
break
}
}
return exists, nil
}
func readVagrantInfo(ctx context.Context, client *vagrant.VagrantClient, d *schema.ResourceData) diag.Diagnostics {
env := buildEnvironment(d.Get("env").(map[string]interface{}))
log.Println("Getting vagrant ssh-config...")
cmd := client.SSHConfig()
cmd.Context = ctx
cmd.Env = env
cmd.Verbose = true
if err := cmd.Run(); err != nil {
return diag.FromErr(err)
}
sshConfigs := make([]map[string]string, len(cmd.Configs))
keys := make([]string, len(cmd.Configs))
i := 0
for key, config := range cmd.Configs {
sshConfig := make(map[string]string, 6)
sshConfig["type"] = "ssh"
sshConfig["user"] = config.User
sshConfig["host"] = config.HostName
sshConfig["port"] = strconv.Itoa(config.Port)
if privateKey, err := ioutil.ReadFile(config.IdentityFile); err == nil {
sshConfig["private_key"] = string(privateKey)
}
sshConfig["agent"] = "false"
sshConfigs[i] = sshConfig
keys[i] = key
i++
}
d.Set("ssh_config", sshConfigs)
d.Set("machine_names", keys)
if len(sshConfigs) == 1 {
d.SetConnInfo(sshConfigs[0])
}
ports := make([][]map[string]int, len(keys))
if d.Get("get_ports").(bool) {
for i, machine := range keys {
portCmd := client.Port()
portCmd.Context = ctx
portCmd.Env = env
portCmd.MachineName = machine
portCmd.Verbose = true
if err := portCmd.Run(); err != nil {
return diag.FromErr(err)
}
ports[i] = make([]map[string]int, len(portCmd.ForwardedPorts))
for j, p := range portCmd.ForwardedPorts {
port := make(map[string]int, 2)
port["guest"] = p.Guest
port["host"] = p.Host
ports[i][j] = port
}
}
}
d.Set("ports", ports)
return nil
}
func buildEnvironment(env map[string]interface{}) []string {
if len(env) == 0 {
return nil
}
envArray := make([]string, len(env))
i := 0
for key, value := range env {
envArray[i] = fmt.Sprintf("%v=%v", key, value)
i++
}
log.Println("Environment:", envArray)
return envArray
}