Skip to content

Commit

Permalink
Increase parallelism of plan operations.
Browse files Browse the repository at this point in the history
  • Loading branch information
nuclearsandwich committed Apr 20, 2024
1 parent a55c712 commit 461c5c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/plan
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh

exec terraform plan -out plan.out | tee plan.txt
PARALLELISM=${PARALLELISM:=128}
exec terraform plan -parallelism=$PARALLELISM -out plan.out | tee plan.txt

0 comments on commit 461c5c5

Please sign in to comment.