We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68baad1 commit 3116472Copy full SHA for 3116472
.gitignore
@@ -0,0 +1,13 @@
1
+# Compiled files
2
+*.tfstate
3
+*.tfstate.backup
4
+
5
+# Module directory
6
+.terraform
7
+.idea
8
+*.iml
9
10
+.build-harness
11
+build-harness
12
13
+test.log
makefile
@@ -0,0 +1,10 @@
+SHELL := /bin/bash
+# List of targets the `readme` target should call before generating the readme
+export README_DEPS ?= docs/targets.md
+-include $(shell curl -sSL -o .build-harness "https://raw.githubusercontent.com/osodevops/build-harness/master/templates/Makefile.build-harness"; echo .build-harness)
+## Lint terraform code
+lint:
+ $(SELF) terraform/install terraform/get-modules terraform/get-plugins terraform/lint terraform/validate
0 commit comments