Phorcys 480bf4b48c
chore: update vscode-desktop-core module dependencies (#751)
## Description

#750 follow-up

## Type of Change

- [ ] New module
- [ ] New template
- [ ] Bug fix
- [x] Feature/enhancement
- [ ] Documentation
- [ ] Other
2026-02-24 05:20:27 +00:00

800 B

display_name description icon verified tags
VS Code Desktop Add a one-click button to launch VS Code Desktop ../../../../.icons/code.svg true
ide
vscode

VS Code Desktop

Add a button to open any workspace with a single click.

Uses the Coder Remote VS Code Extension.

module "vscode" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/coder/vscode-desktop/coder"
  version  = "1.2.1"
  agent_id = coder_agent.main.id
}

Examples

Open in a specific directory

module "vscode" {
  count    = data.coder_workspace.me.start_count
  source   = "registry.coder.com/coder/vscode-desktop/coder"
  version  = "1.2.1"
  agent_id = coder_agent.main.id
  folder   = "/home/coder/project"
}