-
Notifications
You must be signed in to change notification settings - Fork 20
/
brownbag.code-workspace
62 lines (62 loc) · 1.41 KB
/
brownbag.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"tasks": { // CRTL + SHIFT + P -> Tasks
"version": "2.0.0",
"tasks": [
{
"label": "extensions-install",
"type": "shell",
"command": "sudo chmod 777 ./scripts/extensions-install.sh && ${workspaceFolder}/scripts/extensions-install.sh"
},
{
"label": "tf-install",
"type": "shell",
"command": "sudo chmod 777 ./scripts/tf-install.sh && ${workspaceFolder}/scripts/tf-install.sh"
},
{
"label": "tf-init",
"type": "shell",
"command": "cd ${workspaceFolder} && terraform init"
},
{
"label": "run-proxy",
"type": "shell",
"command": "sudo chmod 777 ./scripts/run-proxy.sh && ${workspaceFolder}/scripts/run-proxy.sh"
},
{
"label": "tf-apply",
"type": "shell",
"command": "cd ${workspaceFolder} && terraform apply"
},
{
"label": "tf-destroy",
"type": "shell",
"command": "cd ${workspaceFolder} && terraform destroy"
},
]
},
"launch": { // CRTL + SHIFT + D -> Launch
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/bin/www"
},
],
"compounds": []
},
"settings": {},
"extensions": {
"recommendations": [
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.remote-wsl",
"HashiCorp.terraform",
"ms-python.python"
]
}
}