Skip to content
Permalink
11489a7a27
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
24 lines (18 sloc) 540 Bytes
#
#
# 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
apply:
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
show:
terraform show