From f666f2560d7d263b08a97621c9ebf238815ad6a1 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Fri, 23 May 2025 20:03:02 +0500 Subject: [PATCH 1/2] chore(dogfood): update jetbrains module to use multi-select --- dogfood/coder/main.tf | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 06da4d79c549a..475cdb93b1ce9 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -268,13 +268,10 @@ module "vscode-web" { module "jetbrains" { count = data.coder_workspace.me.start_count - source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains" + source = "git::https://github.com/coder/registry.git//registry/coder/modules/jetbrains?ref=jetbrains" agent_id = coder_agent.dev.id folder = local.repo_dir - options = ["WS", "GO"] - default = "GO" - latest = true - channel = "eap" + major_version = "latest" } module "filebrowser" { From e1c952c839463ca2b61d9b176f37c8c0d50a2c66 Mon Sep 17 00:00:00 2001 From: Atif Ali Date: Fri, 23 May 2025 20:07:41 +0500 Subject: [PATCH 2/2] `fmt` --- dogfood/coder/main.tf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 475cdb93b1ce9..6a6b2021c7e54 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -267,10 +267,10 @@ module "vscode-web" { } module "jetbrains" { - count = data.coder_workspace.me.start_count - source = "git::https://github.com/coder/registry.git//registry/coder/modules/jetbrains?ref=jetbrains" - agent_id = coder_agent.dev.id - folder = local.repo_dir + count = data.coder_workspace.me.start_count + source = "git::https://github.com/coder/registry.git//registry/coder/modules/jetbrains?ref=jetbrains" + agent_id = coder_agent.dev.id + folder = local.repo_dir major_version = "latest" }