This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Expand file tree Collapse file tree 1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ module "jetbrains_gateway" {
2727
2828## Examples
2929
30- ### Add GoLand and WebStorm with the default set to GoLand
30+ ### Add GoLand and WebStorm as options with the default set to GoLand
3131
3232``` tf
3333module "jetbrains_gateway" {
@@ -41,6 +41,37 @@ module "jetbrains_gateway" {
4141}
4242```
4343
44+ ### Use the latest release version
45+
46+ ``` tf
47+ module "jetbrains_gateway" {
48+ source = "registry.coder.com/modules/jetbrains-gateway/coder"
49+ version = "1.0.11"
50+ agent_id = coder_agent.example.id
51+ agent_name = "example"
52+ folder = "/home/coder/example"
53+ jetbrains_ides = ["GO", "WS"]
54+ default = "GO"
55+ latest = true
56+ }
57+ ```
58+
59+ ### Use the latest EAP version
60+
61+ ``` tf
62+ module "jetbrains_gateway" {
63+ source = "registry.coder.com/modules/jetbrains-gateway/coder"
64+ version = "1.0.11"
65+ agent_id = coder_agent.example.id
66+ agent_name = "example"
67+ folder = "/home/coder/example"
68+ jetbrains_ides = ["GO", "WS"]
69+ default = "GO"
70+ latest = true
71+ channel = "eap"
72+ }
73+ ```
74+
4475## Supported IDEs
4576
4677This module and JetBrains Gateway support the following JetBrains IDEs:
You can’t perform that action at this time.
0 commit comments