khuedoan-homelab/infra/Makefile

16 lines
149 B
Makefile
Raw Normal View History

2021-02-08 10:09:32 +07:00
.POSIX:
2021-05-21 11:21:14 +07:00
default: init plan apply
2021-02-08 10:09:32 +07:00
init:
2021-04-24 13:45:13 +07:00
terraform init
2021-02-08 10:09:32 +07:00
plan:
2021-04-24 13:45:13 +07:00
terraform plan
2021-02-08 10:09:32 +07:00
apply:
2021-05-21 11:21:14 +07:00
terraform apply --auto-approve
destroy:
terraform destroy