Skip to content

Commit e54aa44

Browse files
authored
chore(dogfood): switch to JetBrains Toolbox module (coder#17392)
1 parent 272edba commit e54aa44

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

dogfood/coder/main.tf

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ terraform {
22
required_providers {
33
coder = {
44
source = "coder/coder"
5-
version = "2.2.0-pre0"
5+
version = "2.3.0"
66
}
77
docker = {
88
source = "kreuzwerker/docker"
@@ -191,16 +191,15 @@ module "vscode-web" {
191191
accept_license = true
192192
}
193193

194-
module "jetbrains_gateway" {
195-
count = data.coder_workspace.me.start_count
196-
source = "dev.registry.coder.com/modules/jetbrains-gateway/coder"
197-
version = ">= 1.0.0"
198-
agent_id = coder_agent.dev.id
199-
agent_name = "dev"
200-
folder = local.repo_dir
201-
jetbrains_ides = ["GO", "WS"]
202-
default = "GO"
203-
latest = true
194+
module "jetbrains" {
195+
count = data.coder_workspace.me.start_count
196+
source = "git::https://github.com/coder/modules.git//jetbrains?ref=jetbrains"
197+
agent_id = coder_agent.dev.id
198+
folder = local.repo_dir
199+
options = ["WS", "GO"]
200+
default = "GO"
201+
latest = true
202+
channel = "eap"
204203
}
205204

206205
module "filebrowser" {

0 commit comments

Comments
 (0)