From b02f00a6f95a771fcb0e40e62a07b7df0b850075 Mon Sep 17 00:00:00 2001 From: Igor Rodionov Date: Thu, 21 Sep 2017 12:02:40 +0600 Subject: [PATCH] Update apply (#72) --- rootfs/usr/local/include/terraform/apply | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rootfs/usr/local/include/terraform/apply b/rootfs/usr/local/include/terraform/apply index 637173fda..36c2035ea 100644 --- a/rootfs/usr/local/include/terraform/apply +++ b/rootfs/usr/local/include/terraform/apply @@ -1,6 +1,8 @@ include terraform/plan +TF_PARALLELISM ?= 10 + ## Apply pending changes apply: plan @confirm CLUSTER_NAME - @terraform apply -input=false $(TF_STATE_DIR)/terraform.out + @terraform apply -parallelism=$(TF_PARALLELISM) -input=false $(TF_STATE_DIR)/terraform.out