1
0
Fork 0

feat: initial commit

This commit is contained in:
Vojtěch Mareš 2021-11-27 11:14:20 +01:00
commit b406d732c3
11 changed files with 197 additions and 0 deletions

12
Makefile Normal file
View file

@ -0,0 +1,12 @@
.PHONY: setup-git-hooks
setup-git-hooks:
rm -rf .git/hooks
(cd .git && ln -s ../.git-hooks hooks)
.PHONY: tf-fmt-check
tf-fmt-check:
terraform fmt -recursive -check
.PHONY: tf-fmt
tf-fmt:
terraform fmt -recursive