From 3ad842bd8f2e71c09a1350c9c09dc73349210cf5 Mon Sep 17 00:00:00 2001 From: Mathias Fredriksson Date: Thu, 19 Jun 2025 15:35:56 +0300 Subject: [PATCH] feat(dogfood/coder): add devcontainer-cli module (#18456) This change adds the `devcontainers-cli` module to ensure the command has been installed. Its presence will not change how workspaces behave currently without additional changes to the terraform. Updates coder/internal#463 --- dogfood/coder/main.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index c7d91088b8..a30e22d103 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -343,6 +343,13 @@ module "zed" { folder = local.repo_dir } +module "devcontainers-cli" { + count = data.coder_workspace.me.start_count + source = "dev.registry.coder.com/modules/devcontainers-cli/coder" + version = ">= 1.0.0" + agent_id = coder_agent.dev.id +} + resource "coder_agent" "dev" { arch = "amd64" os = "linux"