This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree 1 file changed +32
-1
lines changed
1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ module "jetbrains_gateway" {
27
27
28
28
## Examples
29
29
30
- ### Add GoLand and WebStorm with the default set to GoLand
30
+ ### Add GoLand and WebStorm as options with the default set to GoLand
31
31
32
32
``` tf
33
33
module "jetbrains_gateway" {
@@ -41,6 +41,37 @@ module "jetbrains_gateway" {
41
41
}
42
42
```
43
43
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
+
44
75
## Supported IDEs
45
76
46
77
This module and JetBrains Gateway support the following JetBrains IDEs:
You can’t perform that action at this time.
0 commit comments