Skip to content

Commit a9e4951

Browse files
committed
adding default make file
1 parent ba0a223 commit a9e4951

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

.gitignore

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1+
# Compiled files
2+
*.tfstate
3+
*.tfstate.backup
4+
5+
# Module directory
6+
.terraform
17
.idea
2-
sensitive-*
3-
identity
4-
identity.pub
5-
known_hosts
6-
ca.pem
7-
intermediate.cert.pem
8-
pki_intermediate.csr
9-
pki-ca-root.json
10-
cert_key_list
11-
nohup.out
8+
*.iml
9+
10+
.build-harness
11+
build-harness
12+
13+
test.log

makefile

Lines changed: 10 additions & 0 deletions
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)