We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6841501 commit fb20391Copy full SHA for fb20391
.gitignore
@@ -1,5 +1,13 @@
1
+# Compiled files
2
+*.tfstate
3
+*.tfstate.backup
4
+
5
+# Module directory
6
+.terraform
7
.idea
-sensitive-*
-identity
-identity.pub
-known_hosts
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