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 +