20 lines
423 B
Text
20 lines
423 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Lints and formats terraform files.
|
||
|
|
||
|
(
|
||
|
TFLINT_PATH=$(realpath ./.tflint/tflint)
|
||
|
|
||
|
for PROJECT in "bootstrap" "app"
|
||
|
do
|
||
|
(
|
||
|
PROJECT_ROOT=./infrastructure/$PROJECT
|
||
|
echo ">>> Linting $PROJECT_ROOT"
|
||
|
cd $PROJECT_ROOT
|
||
|
terraform init
|
||
|
$TFLINT_PATH # --var-file ../variables.tfvars
|
||
|
terraform fmt -write=true
|
||
|
)
|
||
|
done
|
||
|
)
|