khuedoan-homelab/infra/Makefile
2021-05-21 11:21:14 +07:00

16 lines
149 B
Makefile

.POSIX:
default: init plan apply
init:
terraform init
plan:
terraform plan
apply:
terraform apply --auto-approve
destroy:
terraform destroy