diff --git a/bin/plan b/bin/plan index 93e6632..9e2d05b 100755 --- a/bin/plan +++ b/bin/plan @@ -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