From 86df303630b3cee6c90c074596dfb55cb6392aab Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 24 Nov 2021 20:58:26 -0800 Subject: [PATCH] + Makefile for infra Terraform commands give me eye cancer so I'm putting this here for ease of use --- infra/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 infra/Makefile diff --git a/infra/Makefile b/infra/Makefile new file mode 100644 index 0000000..31f0b90 --- /dev/null +++ b/infra/Makefile @@ -0,0 +1,10 @@ +build: + terraform plan -out out.plan + +test: + terraform validate + +clean: + rm -f out.plan + +.PHONY: test build clean