mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
16 lines
149 B
Makefile
16 lines
149 B
Makefile
.POSIX:
|
|
|
|
default: init plan apply
|
|
|
|
init:
|
|
terraform init
|
|
|
|
plan:
|
|
terraform plan
|
|
|
|
apply:
|
|
terraform apply --auto-approve
|
|
|
|
destroy:
|
|
terraform destroy
|