10 lines
159 B
Makefile
10 lines
159 B
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: docs
|
|
docs: README.md
|
|
|
|
README.md: $(wildcard *.tf)
|
|
terraform-docs markdown table . | \
|
|
sed 's/ *$$//g' | \
|
|
tee $@ &>/dev/null
|