Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

display_name JetBrains
description Add a one-click button to launch JetBrains IDEs in the dashboard.
icon ../.icons/jetbrains-toolbox.svg
maintainer_github coder
partner_github jetbrains
verified true
tags
ide
jetbrains
helper
parameter

JetBrains

This module adds a JetBrains IDE Button to open any workspace with a single click.

module "jetbrains" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/modules/jetbrains/coder"
  version  = "1.0.0"
  agent_id = coder_agent.example.id
  folder   = "/home/coder/example"
  default  = "GO"
}

Warning

JetBrains recommends a minimum of 4 CPU cores and 8GB of RAM. Consult the JetBrains documentation to confirm other system requirements.

JetBrains IDEs list

Examples

Use the latest version of each IDE

module "jetbrains" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/modules/jetbrains/coder"
  version  = "1.0.0"
  agent_id = coder_agent.example.id
  folder   = "/home/coder/example"
  options  = ["IU", "PY"]
  default  = "IU"
  latest   = true
}

Use the latest EAP version

module "jetbrains" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/modules/jetbrains/coder"
  version  = "1.0.0"
  agent_id = coder_agent.example.id
  folder   = "/home/coder/example"
  options  = ["GO", "WS"]
  default  = "GO"
  latest   = true
  channel  = "eap"
}

Custom base link

Due to the highest priority of the ide_download_link parameter in the (jetbrains-gateway://... within IDEA, the pre-configured download address will be overridden when using IDEA's offline mode. Therefore, it is necessary to configure the download_base_link parameter for the jetbrains_gateway module to change the value of ide_download_link.

module "jetbrains_gateway" {
  count              = data.coder_workspace.me.start_count
  source             = "registry.coder.com/modules/jetbrains-gateway/coder"
  version            = "1.0.0"
  agent_id           = coder_agent.example.id
  folder             = "/home/coder/example"
  options            = ["GO", "WS"]
  releases_base_link = "https://releases.internal.site/"
  download_base_link = "https://download.internal.site/"
  default            = "GO"
}

Supported IDEs

JetBrains supports remote development for the following IDEs: