chore(dogfood): bump mux to 1.4.3 (#23039)

## Summary
- bump the dogfood Mux module to 1.4.3
- enable the new restart logic and allow up to 10 restart attempts

## Testing
- terraform fmt -check -diff dogfood/coder/main.tf
- git diff --check -- dogfood/coder/main.tf
- terraform -chdir=dogfood/coder validate
This commit is contained in:
Michael Suchacz
2026-03-14 06:46:44 +01:00
committed by GitHub
parent cbb3841e81
commit f6976fd6c1
+11 -9
View File
@@ -378,15 +378,17 @@ module "personalize" {
}
module "mux" {
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/mux/coder"
version = "1.4.0"
agent_id = coder_agent.dev.id
subdomain = true
display_name = "Mux"
add_project = local.repo_dir
install_version = "next"
package_manager = "bun"
count = data.coder_workspace.me.start_count
source = "registry.coder.com/coder/mux/coder"
version = "1.4.3"
agent_id = coder_agent.dev.id
subdomain = true
display_name = "Mux"
add_project = local.repo_dir
install_version = "next"
package_manager = "bun"
restart_on_kill = true
max_restart_attempts = 10
}
module "code-server" {