+ Makefile for infra

Terraform commands give me eye cancer so
I'm putting this here for ease of use
This commit is contained in:
shockrah 2021-11-24 20:58:26 -08:00
parent 8f5ff2aff3
commit 86df303630

10
infra/Makefile Normal file
View File

@ -0,0 +1,10 @@
build:
terraform plan -out out.plan
test:
terraform validate
clean:
rm -f out.plan
.PHONY: test build clean