From d033487fffe82c718c2c937d58ec62dbb3551eb1 Mon Sep 17 00:00:00 2001 From: "blinkagent[bot]" <237617714+blinkagent[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 00:53:51 +0000 Subject: [PATCH] fix(dogfood): rename mux module input `add-project` to `add_project` (#22459) The mux module's input variable was renamed from `add-project` to `add_project`. This updates the dogfood template to use the new name. Ref: https://github.com/coder/registry/blob/main/registry/coder/modules/mux/main.tf (variable `add_project`) Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> --- dogfood/coder/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 1b3c2f9849..787d4df16a 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -379,7 +379,7 @@ module "mux" { agent_id = coder_agent.dev.id subdomain = true display_name = "Mux" - add-project = local.repo_dir + add_project = local.repo_dir install_version = "next" package_manager = "bun" }