From e7d705bf98ec50a6bd779e358d9bce5db16cd4f6 Mon Sep 17 00:00:00 2001 From: greg-the-coder Date: Thu, 9 Oct 2025 20:27:18 -0500 Subject: [PATCH] Fixes from AWS Workshop testing (#428) Closes # ## Description Changes to code-server and jetbrains modules that were not caught during initial unit-testing, that appear to be related to older versions of the modules or recent changes. ## Type of Change - [ ] New module - [x] Bug fix - [ ] Feature/enhancement - [ ] Documentation - [ ] Other ## Testing & Validation - [ ] Tests pass (`bun test`) - [ ] Code formatted (`bun run fmt`) - [x] Changes tested locally ## Related Issues None --------- Co-authored-by: DevelopmentCats --- registry/coder/templates/kubernetes-devcontainer/main.tf | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/registry/coder/templates/kubernetes-devcontainer/main.tf b/registry/coder/templates/kubernetes-devcontainer/main.tf index 07af6586..5e36226d 100644 --- a/registry/coder/templates/kubernetes-devcontainer/main.tf +++ b/registry/coder/templates/kubernetes-devcontainer/main.tf @@ -426,15 +426,14 @@ module "code-server" { # This ensures that the latest non-breaking version of the module gets downloaded, you can also pin the module version to prevent breaking changes in production. version = "~> 1.0" - agent_id = coder_agent.main.id - agent_name = "main" - order = 1 + agent_id = coder_agent.main.id + order = 1 } # See https://registry.coder.com/modules/coder/jetbrains module "jetbrains" { count = data.coder_workspace.me.start_count - source = "registry.coder.com/modules/coder/jetbrains/coder" + source = "registry.coder.com/coder/jetbrains/coder" version = "~> 1.0" agent_id = coder_agent.main.id agent_name = "main"