From d1f68f21c2bb5d840403495c4a0b70ffc7e468a8 Mon Sep 17 00:00:00 2001 From: Corey Christous Date: Wed, 25 Feb 2026 23:35:45 -0500 Subject: [PATCH] feat: enable auto-host-recovery for macOS Dedicated Hosts When a pre-allocated Dedicated Host's underlying hardware degrades, AWS will automatically recover it rather than leaving a degraded host in the resource group pool. --- lib/aws-semaphore-agent-stack.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/aws-semaphore-agent-stack.js b/lib/aws-semaphore-agent-stack.js index e25dc32..3705471 100644 --- a/lib/aws-semaphore-agent-stack.js +++ b/lib/aws-semaphore-agent-stack.js @@ -387,6 +387,10 @@ class AwsSemaphoreAgentStack extends Stack { { name: "auto-release-host", values: ["true"] + }, + { + name: "auto-host-recovery", + values: ["true"] } ], },