aboutsummaryrefslogtreecommitdiff
path: root/src/terraform/devcontainer-feature.json
blob: a32d49546dadb99daa1e7e8e2a85a2bbbee260f1 (plain) (blame)
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
{
    "id": "terraform",
    "version": "1.0.4",
    "name": "Terraform, tflint, and TFGrunt",
    "documentationURL": "https://github.com/devcontainers/features/tree/main/src/terraform",
    "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"
        }
    },
    "customizations": {
        "vscode": {
            "extensions": [
                "HashiCorp.terraform",
                "ms-azuretools.vscode-azureterraform"
            ],
            "settings": {
                "terraform.languageServer": {
                    "enabled": true,
                    "args": [
                        "serve"
                    ]
                },
                "azureTerraform.terminal": "integrated"
            }
        }
    }
}