From e6681a6720062273fa837bb2c53594e710dd8475 Mon Sep 17 00:00:00 2001 From: Timothy Middelkoop Date: Tue, 11 May 2021 16:26:13 -0500 Subject: [PATCH] Fix tabs for MacOS --- slurm-gcp/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/slurm-gcp/Makefile b/slurm-gcp/Makefile index d8da6a3..085c39a 100644 --- a/slurm-gcp/Makefile +++ b/slurm-gcp/Makefile @@ -6,19 +6,19 @@ .PHONY: init plan apply destroy init: - terraform init + terraform init validate: - terraform validate + terraform validate plan: - terraform plan -var-file=basic.tfvars -var-file=local.tfvars -out terraform.tfplan + terraform plan -var-file=basic.tfvars -var-file=local.tfvars -out terraform.tfplan apply: - terraform apply -var-file=basic.tfvars -var-file=local.tfvars -auto-approve + terraform apply -var-file=basic.tfvars -var-file=local.tfvars -auto-approve destroy: - terraform destroy -var-file=basic.tfvars -var-file=local.tfvars -auto-approve + terraform destroy -var-file=basic.tfvars -var-file=local.tfvars -auto-approve show: - terraform show + terraform show