From 0aa2ae1093ee70102834bd459241cec4cf2b8a90 Mon Sep 17 00:00:00 2001 From: M Atif Ali Date: Mon, 14 Apr 2025 21:00:54 +0500 Subject: [PATCH 1/2] chore(dogfood): switch to JetBrains Toolbox module --- dogfood/coder/main.tf | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 30e728ce76c09..7c20f3855cfdb 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { coder = { source = "coder/coder" - version = "2.2.0-pre0" + version = "2.3.0" } docker = { source = "kreuzwerker/docker" @@ -191,16 +191,15 @@ module "vscode-web" { accept_license = true } -module "jetbrains_gateway" { - count = data.coder_workspace.me.start_count - source = "dev.registry.coder.com/modules/jetbrains-gateway/coder" - version = ">= 1.0.0" - agent_id = coder_agent.dev.id - agent_name = "dev" - folder = local.repo_dir - jetbrains_ides = ["GO", "WS"] - default = "GO" - latest = true +module "jetbrains" { + count = data.coder_workspace.me.start_count + source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains" + agent_id = coder_agent.dev.id + folder = local.repo_dir + options = ["WS", "GO"] + default = "GO" + latest = true + channel = "eap" } module "filebrowser" { From 0abb448595606fedadb0568362e1bb9754c24f15 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 14 Apr 2025 16:11:18 +0000 Subject: [PATCH 2/2] fmt --- dogfood/coder/main.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 7c20f3855cfdb..5bf9e682bbf43 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -192,14 +192,14 @@ module "vscode-web" { } module "jetbrains" { - count = data.coder_workspace.me.start_count - source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains" - agent_id = coder_agent.dev.id - folder = local.repo_dir - options = ["WS", "GO"] - default = "GO" - latest = true - channel = "eap" + count = data.coder_workspace.me.start_count + source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains" + agent_id = coder_agent.dev.id + folder = local.repo_dir + options = ["WS", "GO"] + default = "GO" + latest = true + channel = "eap" } module "filebrowser" {