From 2387fed93440c371c8cafbc322c7b43691f907bb Mon Sep 17 00:00:00 2001 From: Susana Ferreira Date: Thu, 7 Aug 2025 10:02:55 +0000 Subject: [PATCH 1/2] chore: add description to JetBrains IDEs parameter --- registry/coder/modules/jetbrains/main.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/registry/coder/modules/jetbrains/main.tf b/registry/coder/modules/jetbrains/main.tf index 1959b98e5..71d52c497 100644 --- a/registry/coder/modules/jetbrains/main.tf +++ b/registry/coder/modules/jetbrains/main.tf @@ -202,6 +202,7 @@ data "coder_parameter" "jetbrains_ides" { count = length(var.default) == 0 ? 1 : 0 type = "list(string)" name = "jetbrains_ides" + description = "Select which JetBrains IDEs to configure for use in this workspace." display_name = "JetBrains IDEs" icon = "/icon/jetbrains-toolbox.svg" mutable = true From 32468cb568007dac7f159b042696999897e19343 Mon Sep 17 00:00:00 2001 From: Susana Ferreira Date: Thu, 7 Aug 2025 10:36:32 +0000 Subject: [PATCH 2/2] chore: bump module versions (patch) --- registry/coder/modules/jetbrains/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/registry/coder/modules/jetbrains/README.md b/registry/coder/modules/jetbrains/README.md index 014fe098e..6a99d3fdd 100644 --- a/registry/coder/modules/jetbrains/README.md +++ b/registry/coder/modules/jetbrains/README.md @@ -14,7 +14,7 @@ This module adds JetBrains IDE buttons to launch IDEs directly from the dashboar module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/home/coder/project" } @@ -39,7 +39,7 @@ When `default` contains IDE codes, those IDEs are created directly without user module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/home/coder/project" default = ["PY", "IU"] # Pre-configure GoLand and IntelliJ IDEA @@ -52,7 +52,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/home/coder/project" # Show parameter with limited options @@ -66,7 +66,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/home/coder/project" default = ["IU", "PY"] @@ -81,7 +81,7 @@ module "jetbrains" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/workspace/project" @@ -107,7 +107,7 @@ module "jetbrains" { module "jetbrains_pycharm" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "1.0.1" + version = "1.0.2" agent_id = coder_agent.example.id folder = "/workspace/project"