From f83bdff5e623a0264a12bd4ef4ba1537ffb874aa Mon Sep 17 00:00:00 2001 From: unkin-agent Date: Sun, 23 Aug 2026 22:21:11 +1000 Subject: [PATCH] Run plan without acquiring the Consul state lock PR plan pipelines were failing with "Error acquiring the state lock" when they collided with a concurrent apply (or another plan) holding the lock on the same Consul-backed state. - plan: pass -lock=false to terragrunt plan; apply/apply-if-changes keep locking --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 53410c1..9be174d 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ init: plan: init @$(call vault_env) && \ - terragrunt run --all --parallelism 4 --non-interactive plan + terragrunt run --all --parallelism 4 --non-interactive plan -- -lock=false apply-if-changes: init @$(call vault_env) && \ -- 2.47.3