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

docs(jetbrains-gateway): add examples on how to use the latest version #228

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 32 additions & 1 deletion jetbrains-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "jetbrains_gateway" {

## Examples

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

```tf
module "jetbrains_gateway" {
Expand All @@ -41,6 +41,37 @@ module "jetbrains_gateway" {
}
```

### Use the latest release version

```tf
module "jetbrains_gateway" {
source = "registry.coder.com/modules/jetbrains-gateway/coder"
version = "1.0.11"
agent_id = coder_agent.example.id
agent_name = "example"
folder = "/home/coder/example"
jetbrains_ides = ["GO", "WS"]
default = "GO"
latest = true
}
```

### Use the latest EAP version

```tf
module "jetbrains_gateway" {
source = "registry.coder.com/modules/jetbrains-gateway/coder"
version = "1.0.11"
agent_id = coder_agent.example.id
agent_name = "example"
folder = "/home/coder/example"
jetbrains_ides = ["GO", "WS"]
default = "GO"
latest = true
channel = "eap"
}
```

## Supported IDEs

This module and JetBrains Gateway support the following JetBrains IDEs:
Expand Down