From 47a869da68e3ecaad151de0c972c7a7a6bde2105 Mon Sep 17 00:00:00 2001 From: Jason Rothstein Date: Sat, 1 Aug 2020 08:48:07 -0500 Subject: [PATCH] Add Makefile to enable debug --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..87adf2f --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +.PHONY: all +all: init fmt validate + +.PHONY: init +init: + terraform init + +.PHONY: fmt +fmt: init + terraform fmt + +.PHONY: validate +validate: init fmt + terraform validate + +.PHONY: clean +clean: + $(RM) -r .terraform +