TemplatesModules
Back to Modules
JetBrains Gateway Icon

JetBrains Gateway

By:
Add a one-click button to launch JetBrains Gateway IDEs in the dashboard.
README
Variables (10)
Parameters (1)
Apps (1)
Source

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

1module "jetbrains_gateway" {
2  source         = "registry.coder.com/modules/jetbrains-gateway/coder"
3  version        = "1.0.13"
4  agent_id       = coder_agent.example.id
5  agent_name     = "example"
6  folder         = "/home/coder/example"
7  jetbrains_ides = ["CL", "GO", "IU", "PY", "WS"]
8  default        = "GO"
9}

JetBrains Gateway IDes list

Examples

Add GoLand and WebStorm as options with the default set to GoLand

1module "jetbrains_gateway" {
2  source         = "registry.coder.com/modules/jetbrains-gateway/coder"
3  version        = "1.0.13"
4  agent_id       = coder_agent.example.id
5  agent_name     = "example"
6  folder         = "/home/coder/example"
7  jetbrains_ides = ["GO", "WS"]
8  default        = "GO"
9}

Use the latest release version

1module "jetbrains_gateway" {
2  source         = "registry.coder.com/modules/jetbrains-gateway/coder"
3  version        = "1.0.13"
4  agent_id       = coder_agent.example.id
5  agent_name     = "example"
6  folder         = "/home/coder/example"
7  jetbrains_ides = ["GO", "WS"]
8  default        = "GO"
9  latest         = true
10}

Use the latest EAP version

1module "jetbrains_gateway" {
2  source         = "registry.coder.com/modules/jetbrains-gateway/coder"
3  version        = "1.0.13"
4  agent_id       = coder_agent.example.id
5  agent_name     = "example"
6  folder         = "/home/coder/example"
7  jetbrains_ides = ["GO", "WS"]
8  default        = "GO"
9  latest         = true
10  channel        = "eap"
11}

Supported IDEs

This module and JetBrains Gateway support the following JetBrains IDEs:

  • GoLand (GO)
  • WebStorm (WS)
  • IntelliJ IDEA Ultimate (IU)
  • PyCharm Professional (PY)
  • PhpStorm (PS)
  • CLion (CL)
  • RubyMine (RM)
  • Rider (RD)