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