-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tony
authored and
GitHub
committed
May 10, 2021
1 parent
95b03cb
commit e8c3402
Showing
1 changed file
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 | ||
|
|