Skip to content

Commit 544571b

Browse files
committed
chore: update readme
1 parent ac47d05 commit 544571b

File tree

1 file changed

+20
-1
lines changed
  • registry/coder/modules/vscode-desktop-core

1 file changed

+20
-1
lines changed

registry/coder/modules/vscode-desktop-core/README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,25 @@ tags: [internal, library]
99
# VS Code Desktop Core
1010

1111
> [!CAUTION]
12-
> We do not recommend using this module directly. Instead, please consider using one of our [Tasks-compatible AI agent modules](https://registry.coder.com/modules?search=tag%3Atasks).
12+
> We do not recommend using this module directly. Instead, please consider using one of our [Desktop IDE modules](https://registry.coder.com/modules?search=tag%3Aide).
1313
1414
The VSCode Desktop Core module is a building block for modules that need to expose access to VSCode-based IDEs. It is intended primarily for internal use by Coder to create modules for VSCode-based IDEs.
15+
16+
```tf
17+
module "vscode-desktop-core" {
18+
source = "registry.coder.com/coder/vscode-desktop-core/coder"
19+
version = "1.0.1"
20+
21+
agent_id = var.agent_id
22+
23+
web_app_icon = "/icon/code.svg"
24+
web_app_slug = "vscode"
25+
web_app_display_name = "VS Code Desktop"
26+
web_app_order = var.order
27+
web_app_group = var.group
28+
29+
folder = var.folder
30+
open_recent = var.open_recent
31+
protocol = "vscode"
32+
}
33+
```

0 commit comments

Comments
 (0)