mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
13 lines
100 B
Makefile
13 lines
100 B
Makefile
.POSIX:
|
|
|
|
default: init apply
|
|
|
|
init:
|
|
terraform init
|
|
|
|
plan:
|
|
terraform plan
|
|
|
|
apply:
|
|
terraform apply
|