khuedoan-homelab/infra/Makefile

17 lines
204 B
Makefile
Raw Normal View History

2021-02-08 10:09:32 +07:00
.POSIX:
default: init apply
init:
terraform init
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