21 lines
302 B
Makefile
21 lines
302 B
Makefile
# instance/ec2/Makefile
|
|
|
|
render:
|
|
python ../../render_provider_backend.py
|
|
|
|
init: render
|
|
python ../../render_provider_backend.py
|
|
terraform init --upgrade
|
|
|
|
plan: init
|
|
terraform plan
|
|
|
|
apply: init
|
|
terraform apply -auto-approve
|
|
|
|
output:
|
|
terraform output
|
|
|
|
destroy: init
|
|
terraform destroy -auto-approve
|