From a73410c04e7c7a111d57fc9123dfc0fb6d24325d Mon Sep 17 00:00:00 2001 From: jameslaneovermind <122231433+jameslaneovermind@users.noreply.github.com> Date: Fri, 31 Oct 2025 14:10:55 +0000 Subject: [PATCH 1/2] Add CI fix: disable state locking --- .github/workflows/automatic.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automatic.yml b/.github/workflows/automatic.yml index 68ff24d..c255fe9 100644 --- a/.github/workflows/automatic.yml +++ b/.github/workflows/automatic.yml @@ -78,7 +78,7 @@ jobs: id: plan run: | set -o pipefail -ex - terraform plan -compact-warnings -no-color -input=false -lock-timeout=5m -out tfplan 2>&1 \ + terraform plan -compact-warnings -no-color -input=false -lock=false -out tfplan 2>&1 \ | tee terraform_log terraform show -json tfplan > tfplan.json @@ -154,7 +154,7 @@ jobs: id: plan-cost run: | set -o pipefail -ex - terraform plan -compact-warnings -no-color -input=false -lock-timeout=5m -out tfplan-cost 2>&1 + terraform plan -compact-warnings -no-color -input=false -lock=false -out tfplan-cost 2>&1 terraform show -json tfplan-cost > tfplan-cost.json - uses: overmindtech/cost-signals-action@v1 From a4a6e496391b32106f1d818815a88c9e7cc41aba Mon Sep 17 00:00:00 2001 From: jameslaneovermind <122231433+jameslaneovermind@users.noreply.github.com> Date: Fri, 31 Oct 2025 14:11:44 +0000 Subject: [PATCH 2/2] Update ECS health check port from 1234 to 8080 Change facial-recognition service health check to use port 8080 instead of 1234. This is part of standardizing health check endpoints across services. Impact: Low - routine health check configuration update --- modules/scenarios/loom.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/scenarios/loom.tf b/modules/scenarios/loom.tf index f1385de..12ee6b2 100644 --- a/modules/scenarios/loom.tf +++ b/modules/scenarios/loom.tf @@ -531,7 +531,7 @@ resource "aws_ecs_task_definition" "face" { memory = 2048 essential = true healthCheck = { - command = ["CMD-SHELL", "wget -q --spider localhost:1234"] + command = ["CMD-SHELL", "wget -q --spider localhost:8080"] interval = 30 retries = 3 timeout = 5