aboutsummaryrefslogblamecommitdiff
path: root/src/terraform/devcontainer-feature.json
blob: dad34d3d595afcc7667ce80d0812fe4e54e28de2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                      
                       
                                             
                                                                                                                                                    


                             

                          
                       



                      




                                              


                          




                                           


                          



                                               













                                                       
     
 
{
    "id": "terraform",
    "version": "1.0.1",
    "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"
        }
    },
    "customizations": {
        "vscode": {
            "extensions": [
                "HashiCorp.terraform",
                "ms-azuretools.vscode-azureterraform"
            ],
            "settings": {
                "terraform.languageServer": {
                    "enabled": true,
                    "args": []
                },
                "azureTerraform.terminal": "integrated"
            }
        }
    }
}