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
|
{
"id": "terraform",
"name": "Terraform, tflint, and TFGrunt",
"description": "Installs the Terraform CLI and optionally TFLint and Terragrunt. Auto-detects latest version and installs needed dependencies.",
"options": {
"version": {
"type": "string",
"proposals": [
"latest",
"none",
"1.1",
"1.0",
"0.15"
],
"default": "latest",
"description": "Terraform version"
},
"tflint": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Tflint version"
},
"terragrunt": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Terragrunt version"
}
},
"extensions": [
"HashiCorp.terraform",
"ms-azuretools.vscode-azureterraform"
],
"settings": {
"terraform.languageServer": {
"enabled": true,
"args": []
},
"azureTerraform.terminal": "integrated"
},
"install": {
"app": "",
"file": "install.sh"
}
}
|