From eac3e55537318d2c406dfce05a8716c3f49aafdf Mon Sep 17 00:00:00 2001 From: Hugo Dutka Date: Thu, 5 Jun 2025 18:26:37 +0200 Subject: [PATCH] add healthcheck to claude code web --- registry/coder/modules/claude-code/main.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 9cdecb02..4a9291ee 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -245,6 +245,11 @@ resource "coder_app" "claude_code_web" { url = "http://localhost:3284/" icon = var.icon subdomain = true + healthcheck { + url = "http://localhost:3284/status" + interval = 5 + threshold = 3 + } } resource "coder_app" "claude_code" {