From e8c3402d7c78f544d55f3884d60c41ec9e8ee278 Mon Sep 17 00:00:00 2001 From: Tony Date: Mon, 10 May 2021 09:16:48 -0700 Subject: [PATCH] Update Makefile --- slurm-gcp/Makefile | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/slurm-gcp/Makefile b/slurm-gcp/Makefile index 9394a38..f697d45 100644 --- a/slurm-gcp/Makefile +++ b/slurm-gcp/Makefile @@ -1,10 +1,25 @@ -.PHONY: plan apply destroy +# +# +# I2 Capstone Project +# Allissa Dillman, Ananya Ravipati, Bala Desinghu, Tony Cricell, John Hicks, Timothy Middelkoop +# +.PHONY: init plan apply destroy + +init: + terraform init + +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 +