From 0b99805b099e77b62cf31cdc9543b053dcd71b69 Mon Sep 17 00:00:00 2001 From: Ben Vincent Date: Fri, 17 Oct 2025 15:58:41 +1100 Subject: [PATCH] chore: reduce parallelism - reduce plan to 4 - reduce apply to 2 - build servers only have two cores currently --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bd684e9..085db0e 100644 --- a/Makefile +++ b/Makefile @@ -38,11 +38,11 @@ init: plan: init @$(call vault_env) && \ - terragrunt run --all --parallelism 8 --non-interactive plan + terragrunt run --all --parallelism 4 --non-interactive plan apply: init @$(call vault_env) && \ - terragrunt run --all --parallelism 5 --non-interactive apply + terragrunt run --all --parallelism 2 --non-interactive apply output: @$(call vault_env) && \