Skip to content

chore(dogfood): group web editors together #18143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions dogfood/coder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
coder = {
source = "coder/coder"
version = "~> 2.0"
version = "~> 2.5"
}
docker = {
source = "kreuzwerker/docker"
Expand Down Expand Up @@ -267,21 +267,23 @@ module "personalize" {
module "code-server" {
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/code-server/coder"
version = "1.2.0"
version = "1.3.0"
agent_id = coder_agent.dev.id
folder = local.repo_dir
auto_install_extensions = true
group = "Web Editors"
}

module "vscode-web" {
count = data.coder_workspace.me.start_count
source = "dev.registry.coder.com/coder/vscode-web/coder"
version = "1.1.0"
version = "1.2.0"
agent_id = coder_agent.dev.id
folder = local.repo_dir
extensions = ["github.copilot"]
auto_install_extensions = true # will install extensions from the repos .vscode/extensions.json file
accept_license = true
group = "Web Editors"
}

module "jetbrains" {
Expand Down
Loading