{
"id": "terraform",
"version": "1.3.1",
"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",
"0.47.0",
"0.46.1"
],
"default": "0.46.1",
"description": "Tflint version (Default value temporarily pinned to version 0.46.1: https://github.com/devcontainers/features/issues/581)"
},
"terragrunt": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Terragrunt version"
},
"installSentinel": {
"type": "boolean",
"default": false,
"description": "Install sentinel, a language and framework for policy built to be embedded in existing software to enable fine-grained, logic-based policy decisions"
},
"installTFsec": {
"type": "boolean",
"default": false,
"description": "Install tfsec, a tool to spot potential misconfigurations for your terraform code"
},
"installTerraformDocs": {
"type": "boolean",
"default": false,
"description": "Install terraform-docs, a utility to generate documentation from Terraform modules"
},
"httpProxy": {
"type": "string",
"default": "",
"description": "Connect to a keyserver using a proxy by configuring this option"
}
},
"customizations": {
"vscode": {
"extensions": [
"HashiCorp.terraform",
"ms-azuretools.vscode-azureterraform"
],
"settings": {
"terraform.languageServer.enable": true,
"terraform.languageServer.args": [
"serve"
],
"azureTerraform.terminal": "integrated"
}
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}