From a0c1a051ed9025dee64ba7c9ac3b62adf39385ca Mon Sep 17 00:00:00 2001 From: BrunoQuaresma Date: Tue, 3 Jun 2025 20:54:58 +0000 Subject: [PATCH] feat: add claude_code_web in claude-code --- registry/coder/modules/claude-code/main.tf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 1435a2f3..d4a13491 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -253,3 +253,12 @@ resource "coder_app" "claude_code" { order = var.order group = var.group } + +resource "coder_app" "claude_code_web" { + slug = "claude-code-web" + display_name = "Claude Code Web" + agent_id = var.agent_id + url = "http://localhost:3284/chat/embed" + icon = var.icon + subdomain = true +}