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

Commit 43304e5

Browse files
authored
docs(jetbrains-gateway): add examples on how to use the latest version (#228)
1 parent d8f71e4 commit 43304e5

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

jetbrains-gateway/README.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff 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
3333
module "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

4677
This module and JetBrains Gateway support the following JetBrains IDEs:

0 commit comments

Comments
 (0)