11 lines
389 B
Makefile
Executable File
11 lines
389 B
Makefile
Executable File
SHELL := /bin/bash
|
|
|
|
# List of targets the `readme` target should call before generating the readme
|
|
export README_DEPS ?= docs/targets.md docs/terraform.md
|
|
|
|
-include $(shell curl -sSL -o .build-harness "https://git.io/build-harness"; echo .build-harness)
|
|
|
|
## Lint terraform code
|
|
lint:
|
|
$(SELF) terraform/install terraform/get-modules terraform/get-plugins terraform/lint terraform/validate
|