From 391b5dd5a21ef6c6b188820585874c9a3283a57b Mon Sep 17 00:00:00 2001 From: Ilkka Poutanen Date: Mon, 30 Jan 2023 12:53:12 +0200 Subject: [PATCH] Add terraform and Azure CLI to devcontainer --- .devcontainer/devcontainer.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 8d5d0fc1..3cab4813 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -11,7 +11,11 @@ "ghcr.io/devcontainers/features/go:1": {}, "ghcr.io/eitsupi/devcontainer-features/go-task:0": {}, "ghcr.io/guiyomh/features/golangci-lint:0": {}, - "ghcr.io/guiyomh/features/goreleaser:0": {} + "ghcr.io/guiyomh/features/goreleaser:0": {}, + "ghcr.io/devcontainers/features/azure-cli:1": {}, + "ghcr.io/devcontainers/features/terraform:1": { + "installTFsec": true + } }, // Configure tool-specific properties. "customizations": { @@ -25,7 +29,8 @@ }, "extensions": [ "GitHub.vscode-pull-request-github", - "golang.go" + "golang.go", + "hashicorp.terraform" ] } }