khuedoan-homelab/infra/Makefile

18 lines
222 B
Makefile
Raw Normal View History

2021-02-08 10:09:32 +07:00
.POSIX:
default: init apply
init:
2021-04-19 01:54:11 +07:00
cd platform \
&& terraform init
2021-02-08 10:09:32 +07:00
plan:
source ../metal/secrets/env \
2021-04-19 01:36:12 +07:00
&& cd platform \
&& terraform plan
2021-02-08 10:09:32 +07:00
apply:
source ../metal/secrets/env \
2021-04-19 01:36:12 +07:00
&& cd platform \
&& terraform apply