khuedoan-homelab/infra/Makefile
2021-04-19 01:54:11 +07:00

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