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 +