mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-10 07:16:57 +07:00
15 lines
168 B
Makefile
15 lines
168 B
Makefile
.POSIX:
|
|
|
|
default: init apply
|
|
|
|
init:
|
|
terraform init
|
|
|
|
plan:
|
|
source ../metal/secrets/env \
|
|
&& terraform plan
|
|
|
|
apply:
|
|
source ../metal/secrets/env \
|
|
&& terraform apply
|