## Description #750 follow-up ## Type of Change - [ ] New module - [ ] New template - [ ] Bug fix - [x] Feature/enhancement - [ ] Documentation - [ ] Other
800 B
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 |
|
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"
}