Skip to content

Commit ee6e788

Browse files
authored
chore(dogfood): add vscode-web module
1 parent 6ca1e59 commit ee6e788

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

dogfood/contents/main.tf

+12
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,18 @@ module "code-server" {
149149
auto_install_extensions = true
150150
}
151151

152+
module "vscode-web" {
153+
count = data.coder_workspace.me.start_count
154+
source = "registry.coder.com/modules/vscode-web/coder"
155+
version = ">= 1.0.0"
156+
agent_id = coder_agent.dev.id
157+
install_prefix = "/home/coder/.vscode-web" # by default this is /tmp/vscode-web
158+
folder = local.repo_dir
159+
extensions = ["github.copilot"]
160+
auto_install_extensions = true # will install extensions from the repos .vscode/extensions.json file
161+
accept_license = true
162+
}
163+
152164
module "jetbrains_gateway" {
153165
count = data.coder_workspace.me.start_count
154166
source = "dev.registry.coder.com/modules/jetbrains-gateway/coder"

0 commit comments

Comments
 (0)