khuedoan-homelab/infra/Makefile
2021-04-19 01:36:12 +07:00

17 lines
204 B
Makefile

.POSIX:
default: init apply
init:
terraform init
plan:
source ../metal/secrets/env \
&& cd platform \
&& terraform plan
apply:
source ../metal/secrets/env \
&& cd platform \
&& terraform apply