aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Pogran <jpogran@outlook.com>2022-09-06 20:13:38 +0300
committerGitHub <noreply@github.com>2022-09-06 20:13:38 +0300
commitd8ee2e8cf193bac39d9f31003f18d90b16dc969e (patch)
tree3293e3bf23436b515a23bedde408af6ce3fde0dc
parent7e6dd4b07089855b491da02ea66666505ebda541 (diff)
Set HashiCorp Terraform Extension Defaults (#131)
* Set HashiCorp Terraform Extension Defaults This updates the HashiCorp Extension settings to the updated naming convention. The HashiCorp Extension [changed it's setting structure](https://github.com/hashicorp/vscode-terraform/blob/main/docs/settings-migration.md#settings-migration) for some settings in v2.24.0. Old settings are still honored for a period of time, but we should update this devcontainer with the correct names. * Bump to version 1.0.5 for publish
-rw-r--r--src/terraform/devcontainer-feature.json12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/terraform/devcontainer-feature.json b/src/terraform/devcontainer-feature.json
index a32d495..4ace245 100644
--- a/src/terraform/devcontainer-feature.json
+++ b/src/terraform/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "terraform",
- "version": "1.0.4",
+ "version": "1.0.5",
"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.",
@@ -41,12 +41,10 @@
"ms-azuretools.vscode-azureterraform"
],
"settings": {
- "terraform.languageServer": {
- "enabled": true,
- "args": [
- "serve"
- ]
- },
+ "terraform.languageServer.enable": true,
+ "terraform.languageServer.args": [
+ "serve"
+ ],
"azureTerraform.terminal": "integrated"
}
}