khuedoan-homelab/infra/Makefile

16 lines
151 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:
2021-04-24 13:40:16 +07:00
platform \
&& terraform plan
2021-02-08 10:09:32 +07:00
apply:
2021-04-24 13:40:16 +07:00
cd platform \
&& terraform apply