terraform-module-virt/build_docs.sh
2022-03-21 23:56:53 -04:00

12 lines
171 B
Bash
Executable File

#!/bin/bash
for i in $(ls -1 | grep -E "virt_|cloud_"); do
echo terraform-docs markdown "$i > $i/README.md"
terraform-docs markdown "$i" > "$i/README.md"
done