Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d630736

Browse files
blink-so[bot]AtifUpdate
andcommitted
Update jetbrains-gateway module references to coder/jetbrains
Replace all references to registry.coder.com/modules/jetbrains-gateway/coder with registry.coder.com/modules/coder/jetbrains/coder in: - Example templates - Dogfood templates - Documentation Co-authored-by: AtifUpdate <[email protected]>
1 parent 0b6f353 commit d630736

File tree

14 files changed

+35
-35
lines changed

14 files changed

+35
-35
lines changed

docs/about/contributing/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ Use the version bump script to update versions:
369369

370370
## Get help
371371

372-
- **Examples**: Review existing modules like [`code-server`](https://registry.coder.com/modules/coder/code-server), [`git-clone`](https://registry.coder.com/modules/coder/git-clone), and [`jetbrains-gateway`](https://registry.coder.com/modules/coder/jetbrains-gateway)
372+
- **Examples**: Review existing modules like [`code-server`](https://registry.coder.com/modules/coder/code-server), [`git-clone`](https://registry.coder.com/modules/coder/git-clone), and [`jetbrains`](https://registry.coder.com/modules/coder/jetbrains)
373373
- **Issues**: Open an issue at [github.com/coder/registry](https://github.com/coder/registry/issues)
374374
- **Community**: Join the [Coder Discord](https://discord.gg/coder) for questions
375375
- **Documentation**: Check the [Coder docs](https://coder.com/docs) for help on Coder.

docs/admin/templates/extending-templates/jetbrains-preinstall.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ Add the following command to your template's `startup_script`:
4040

4141
## Configure JetBrains Gateway Module
4242

43-
If you are using our [jetbrains-gateway](https://registry.coder.com/modules/coder/jetbrains-gateway) module, you can configure it by adding the following snippet to your template:
43+
If you are using our [jetbrains](https://registry.coder.com/modules/coder/jetbrains) module, you can configure it by adding the following snippet to your template:
4444

4545
```tf
4646
module "jetbrains_gateway" {
4747
count = data.coder_workspace.me.start_count
48-
source = "registry.coder.com/modules/jetbrains-gateway/coder"
48+
source = "registry.coder.com/modules/jetbrains/coder"
4949
version = "1.0.29"
5050
agent_id = coder_agent.main.id
5151
folder = "/home/coder/example"

docs/admin/templates/extending-templates/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ across templates. Some of the modules we publish are,
4444
[`vscode-web`](https://registry.coder.com/modules/coder/vscode-web)
4545
2. [`git-clone`](https://registry.coder.com/modules/coder/git-clone)
4646
3. [`dotfiles`](https://registry.coder.com/modules/coder/dotfiles)
47-
4. [`jetbrains-gateway`](https://registry.coder.com/modules/coder/jetbrains-gateway)
47+
4. [`jetbrains`](https://registry.coder.com/modules/coder/jetbrains)
4848
5. [`jfrog-oauth`](https://registry.coder.com/modules/coder/jfrog-oauth) and
4949
[`jfrog-token`](https://registry.coder.com/modules/coder/jfrog-token)
5050
6. [`vault-github`](https://registry.coder.com/modules/coder/vault-github)

dogfood/coder-envbuilder/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ module "code-server" {
136136
}
137137

138138
module "jetbrains_gateway" {
139-
source = "dev.registry.coder.com/coder/jetbrains-gateway/coder"
139+
source = "dev.registry.coder.com/coder/jetbrains/coder"
140140
version = "1.1.1"
141141
agent_id = coder_agent.dev.id
142142
agent_name = "dev"
@@ -448,4 +448,4 @@ resource "coder_metadata" "container_info" {
448448
key = "region"
449449
value = data.coder_parameter.region.option[index(data.coder_parameter.region.option.*.value, data.coder_parameter.region.value)].name
450450
}
451-
}
451+
}

examples/templates/aws-linux/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ module "code-server" {
205205
order = 1
206206
}
207207

208-
# See https://registry.coder.com/modules/jetbrains-gateway
208+
# See https://registry.coder.com/modules/coder/jetbrains
209209
module "jetbrains_gateway" {
210210
count = data.coder_workspace.me.start_count
211-
source = "registry.coder.com/modules/jetbrains-gateway/coder"
211+
source = "registry.coder.com/modules/coder/jetbrains/coder"
212212

213213
# JetBrains IDEs to make available for the user to select
214214
jetbrains_ides = ["IU", "PY", "WS", "PS", "RD", "CL", "GO", "RM"]
@@ -293,4 +293,4 @@ resource "coder_metadata" "workspace_info" {
293293
resource "aws_ec2_instance_state" "dev" {
294294
instance_id = aws_instance.dev.id
295295
state = data.coder_workspace.me.transition == "start" ? "running" : "stopped"
296-
}
296+
}

examples/templates/azure-linux/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ module "code-server" {
148148
order = 1
149149
}
150150

151-
# See https://registry.coder.com/modules/coder/jetbrains-gateway
151+
# See https://registry.coder.com/modules/coder/jetbrains
152152
module "jetbrains_gateway" {
153153
count = data.coder_workspace.me.start_count
154-
source = "registry.coder.com/coder/jetbrains-gateway/coder"
154+
source = "registry.coder.com/modules/coder/jetbrains/coder"
155155

156156
# JetBrains IDEs to make available for the user to select
157157
jetbrains_ides = ["IU", "PY", "WS", "PS", "RD", "CL", "GO", "RM"]
@@ -322,4 +322,4 @@ resource "coder_metadata" "home_info" {
322322
key = "size"
323323
value = "${data.coder_parameter.home_size.value} GiB"
324324
}
325-
}
325+
}

examples/templates/digitalocean-linux/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,10 @@ module "code-server" {
276276
order = 1
277277
}
278278

279-
# See https://registry.coder.com/modules/coder/jetbrains-gateway
279+
# See https://registry.coder.com/modules/coder/jetbrains
280280
module "jetbrains_gateway" {
281281
count = data.coder_workspace.me.start_count
282-
source = "registry.coder.com/coder/jetbrains-gateway/coder"
282+
source = "registry.coder.com/modules/coder/jetbrains/coder"
283283

284284
# JetBrains IDEs to make available for the user to select
285285
jetbrains_ides = ["IU", "PY", "WS", "PS", "RD", "CL", "GO", "RM"]
@@ -358,4 +358,4 @@ resource "coder_metadata" "volume-info" {
358358
key = "size"
359359
value = "${digitalocean_volume.home_volume.size} GiB"
360360
}
361-
}
361+
}

examples/templates/docker-envbuilder/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,10 +334,10 @@ module "code-server" {
334334
order = 1
335335
}
336336

337-
# See https://registry.coder.com/modules/coder/jetbrains-gateway
337+
# See https://registry.coder.com/modules/coder/jetbrains
338338
module "jetbrains_gateway" {
339339
count = data.coder_workspace.me.start_count
340-
source = "registry.coder.com/coder/jetbrains-gateway/coder"
340+
source = "registry.coder.com/modules/coder/jetbrains/coder"
341341

342342
# JetBrains IDEs to make available for the user to select
343343
jetbrains_ides = ["IU", "PS", "WS", "PY", "CL", "GO", "RM", "RD", "RR"]

examples/templates/docker/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ module "code-server" {
133133
order = 1
134134
}
135135

136-
# See https://registry.coder.com/modules/coder/jetbrains-gateway
136+
# See https://registry.coder.com/modules/coder/jetbrains
137137
module "jetbrains_gateway" {
138138
count = data.coder_workspace.me.start_count
139-
source = "registry.coder.com/coder/jetbrains-gateway/coder"
139+
source = "registry.coder.com/modules/coder/jetbrains/coder"
140140

141141
# JetBrains IDEs to make available for the user to select
142142
jetbrains_ides = ["IU", "PS", "WS", "PY", "CL", "GO", "RM", "RD", "RR"]
@@ -217,4 +217,4 @@ resource "docker_container" "workspace" {
217217
label = "coder.workspace_name"
218218
value = data.coder_workspace.me.name
219219
}
220-
}
220+
}

examples/templates/gcp-devcontainer/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -295,10 +295,10 @@ module "code-server" {
295295
order = 1
296296
}
297297

298-
# See https://registry.coder.com/modules/coder/jetbrains-gateway
298+
# See https://registry.coder.com/modules/coder/jetbrains
299299
module "jetbrains_gateway" {
300300
count = data.coder_workspace.me.start_count
301-
source = "registry.coder.com/coder/jetbrains-gateway/coder"
301+
source = "registry.coder.com/coder/jetbrains/coder"
302302

303303
# JetBrains IDEs to make available for the user to select
304304
jetbrains_ides = ["IU", "PY", "WS", "PS", "RD", "CL", "GO", "RM"]
@@ -338,4 +338,4 @@ resource "coder_metadata" "home_info" {
338338
key = "size"
339339
value = "${google_compute_disk.root.size} GiB"
340340
}
341-
}
341+
}

0 commit comments

Comments
 (0)