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