Skip to content

Commit 3116472

Browse files
committed
adding default make file
1 parent 68baad1 commit 3116472

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -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

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
SHELL := /bin/bash
2+
3+
# List of targets the `readme` target should call before generating the readme
4+
export README_DEPS ?= docs/targets.md
5+
6+
-include $(shell curl -sSL -o .build-harness "https://raw.githubusercontent.com/osodevops/build-harness/master/templates/Makefile.build-harness"; echo .build-harness)
7+
8+
## Lint terraform code
9+
lint:
10+
$(SELF) terraform/install terraform/get-modules terraform/get-plugins terraform/lint terraform/validate

0 commit comments

Comments
 (0)