Skip to content

Commit 19f6dc9

Browse files
authored
fix: correct description for 'Install multiple extensions' example in code-server module documentation (#817)
## Description Update incorrect documentation element for **Install multiple extensions** ## Type of Change - [ ] New module - [ ] New template - [ ] Bug fix - [ ] Feature/enhancement - [x] Documentation - [ ] Other ## Related Issues None
1 parent 962cd16 commit 19f6dc9

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

registry/coder/modules/code-server/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Automatically install [code-server](https://github.com/coder/code-server) in a w
1414
module "code-server" {
1515
count = data.coder_workspace.me.start_count
1616
source = "registry.coder.com/coder/code-server/coder"
17-
version = "1.4.3"
17+
version = "1.4.4"
1818
agent_id = coder_agent.example.id
1919
}
2020
```
@@ -29,7 +29,7 @@ module "code-server" {
2929
module "code-server" {
3030
count = data.coder_workspace.me.start_count
3131
source = "registry.coder.com/coder/code-server/coder"
32-
version = "1.4.3"
32+
version = "1.4.4"
3333
agent_id = coder_agent.example.id
3434
install_version = "4.106.3"
3535
}
@@ -43,7 +43,7 @@ Install the Dracula theme from [OpenVSX](https://open-vsx.org/):
4343
module "code-server" {
4444
count = data.coder_workspace.me.start_count
4545
source = "registry.coder.com/coder/code-server/coder"
46-
version = "1.4.3"
46+
version = "1.4.4"
4747
agent_id = coder_agent.example.id
4848
extensions = [
4949
"dracula-theme.theme-dracula"
@@ -61,7 +61,7 @@ Configure VS Code's [settings.json](https://code.visualstudio.com/docs/getstarte
6161
module "code-server" {
6262
count = data.coder_workspace.me.start_count
6363
source = "registry.coder.com/coder/code-server/coder"
64-
version = "1.4.3"
64+
version = "1.4.4"
6565
agent_id = coder_agent.example.id
6666
extensions = ["dracula-theme.theme-dracula"]
6767
settings = {
@@ -72,13 +72,13 @@ module "code-server" {
7272

7373
### Install multiple extensions
7474

75-
Just run code-server in the background, don't fetch it from GitHub:
75+
Install multiple extensions from [OpenVSX](https://open-vsx.org/) by adding them to the `extensions` list:
7676

7777
```tf
7878
module "code-server" {
7979
count = data.coder_workspace.me.start_count
8080
source = "registry.coder.com/coder/code-server/coder"
81-
version = "1.4.3"
81+
version = "1.4.4"
8282
agent_id = coder_agent.example.id
8383
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
8484
}
@@ -92,7 +92,7 @@ You can pass additional command-line arguments to code-server using the `additio
9292
module "code-server" {
9393
count = data.coder_workspace.me.start_count
9494
source = "registry.coder.com/coder/code-server/coder"
95-
version = "1.4.3"
95+
version = "1.4.4"
9696
agent_id = coder_agent.example.id
9797
additional_args = "--disable-workspace-trust"
9898
}
@@ -108,7 +108,7 @@ Run an existing copy of code-server if found, otherwise download from GitHub:
108108
module "code-server" {
109109
count = data.coder_workspace.me.start_count
110110
source = "registry.coder.com/coder/code-server/coder"
111-
version = "1.4.3"
111+
version = "1.4.4"
112112
agent_id = coder_agent.example.id
113113
use_cached = true
114114
extensions = ["dracula-theme.theme-dracula", "ms-azuretools.vscode-docker"]
@@ -121,7 +121,7 @@ Just run code-server in the background, don't fetch it from GitHub:
121121
module "code-server" {
122122
count = data.coder_workspace.me.start_count
123123
source = "registry.coder.com/coder/code-server/coder"
124-
version = "1.4.3"
124+
version = "1.4.4"
125125
agent_id = coder_agent.example.id
126126
offline = true
127127
}

0 commit comments

Comments
 (0)