From c411657a678e28336a0a7fcf4be12ded0b6f40ed Mon Sep 17 00:00:00 2001 From: 35C4n0r Date: Mon, 19 Jan 2026 18:10:00 +0000 Subject: [PATCH] feat: merge to main changes --- registry/coder/modules/claude-code/main.tf | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/registry/coder/modules/claude-code/main.tf b/registry/coder/modules/claude-code/main.tf index 8c98adc8..f9938ad2 100644 --- a/registry/coder/modules/claude-code/main.tf +++ b/registry/coder/modules/claude-code/main.tf @@ -356,16 +356,18 @@ locals { export ARG_CLAUDE_CODE_VERSION='${var.claude_code_version}' export ARG_MCP_APP_STATUS_SLUG='${local.app_slug}' export ARG_INSTALL_CLAUDE_CODE='${var.install_claude_code}' + export ARG_CLAUDE_BINARY_PATH='${var.claude_binary_path}' + export ARG_INSTALL_VIA_NPM='${var.install_via_npm}' export ARG_REPORT_TASKS='${var.report_tasks}' export ARG_WORKDIR='${local.workdir}' export ARG_ALLOWED_TOOLS='${var.allowed_tools}' export ARG_DISALLOWED_TOOLS='${var.disallowed_tools}' export ARG_MCP='${var.mcp != null ? base64encode(replace(var.mcp, "'", "'\\''")) : ""}' + export ARG_ENABLE_AIBRIDGE='${var.enable_aibridge}' EOT # Common environment variables for start script start_env_vars = <<-EOT - export ARG_MODEL='${var.model}' export ARG_RESUME_SESSION_ID='${var.resume_session_id}' export ARG_CONTINUE='${var.continue}' export ARG_DANGEROUSLY_SKIP_PERMISSIONS='${var.dangerously_skip_permissions}' @@ -375,12 +377,6 @@ locals { export ARG_REPORT_TASKS='${var.report_tasks}' export ARG_ENABLE_BOUNDARY='${var.enable_boundary}' export ARG_BOUNDARY_VERSION='${var.boundary_version}' - export ARG_BOUNDARY_LOG_DIR='${var.boundary_log_dir}' - export ARG_BOUNDARY_LOG_LEVEL='${var.boundary_log_level}' - export ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS='${join("|", var.boundary_additional_allowed_urls)}' - export ARG_BOUNDARY_PROXY_PORT='${var.boundary_proxy_port}' - export ARG_ENABLE_BOUNDARY_PPROF='${var.enable_boundary_pprof}' - export ARG_BOUNDARY_PPROF_PORT='${var.boundary_pprof_port}' export ARG_COMPILE_FROM_SOURCE='${var.compile_boundary_from_source}' export ARG_CODER_HOST='${local.coder_host}' export ARG_NON_AGENTAPI_CLI='${!var.report_tasks && var.cli_app ? true : false}'