diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 436bfa74f3..f66b9d40d3 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -409,11 +409,12 @@ module "vscode-web" { module "jetbrains" { count = contains(jsondecode(data.coder_parameter.ide_choices.value), "jetbrains") ? data.coder_workspace.me.start_count : 0 source = "dev.registry.coder.com/coder/jetbrains/coder" - version = "1.0.3" + version = "1.1.0" agent_id = coder_agent.dev.id agent_name = "dev" folder = local.repo_dir major_version = "latest" + tooltip = "You need to [Install Coder Desktop](https://coder.com/docs/user-guides/desktop#install-coder-desktop) to use this button." } module "filebrowser" { diff --git a/examples/templates/docker/main.tf b/examples/templates/docker/main.tf index d7f87b1923..a3535042b0 100644 --- a/examples/templates/docker/main.tf +++ b/examples/templates/docker/main.tf @@ -137,10 +137,11 @@ module "code-server" { module "jetbrains" { count = data.coder_workspace.me.start_count source = "registry.coder.com/coder/jetbrains/coder" - version = "~> 1.0" + version = "~> 1.1" agent_id = coder_agent.main.id agent_name = "main" folder = "/home/coder" + tooltip = "You need to [Install Coder Desktop](https://coder.com/docs/user-guides/desktop#install-coder-desktop) to use this button." } resource "docker_volume" "home_volume" { @@ -207,4 +208,4 @@ resource "docker_container" "workspace" { label = "coder.workspace_name" value = data.coder_workspace.me.name } -} \ No newline at end of file +}