ケイラ 8e051a8e2c
feat: add group attributes to all modules (#123)
Goes along with https://github.com/coder/coder/issues/8237

Most people probably gets apps from modules, and so to group them we'll
need new versions of aaaaaall of these modules.

Also some were missing `order`, which is related and intertwined pretty
closely in the implementation of `group`, so add it where necessary.
2025-05-30 16:52:55 -06:00

831 B

display_name description icon maintainer_github verified tags
VS Code Desktop Add a one-click button to launch VS Code Desktop ../../../../.icons/code.svg coder 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.1.0"
  agent_id = coder_agent.example.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.1.0"
  agent_id = coder_agent.example.id
  folder   = "/home/coder/project"
}