terraform validate, lint and format checker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
set -e | |
SCRIPT_DIR=$(dirname "$BASH_SOURCE") | |
cd "$SCRIPT_DIR" | |
echo -e "\n\n>>> Installing Terraform 0.12" | |
# Install terraform tooling for linting terraform | |
wget -q https://releases.hashicorp.com/terraform/0.12.4/terraform_0.12.4_linux_amd64.zip -O /tmp/terraform.zip | |
sudo unzip -q -o -d /usr/local/bin/ /tmp/terraform.zip | |
echo "" | |
echo -e "\n\n>>> Install tflint (3rd party)" | |
wget -q https://github.com/wata727/tflint/releases/download/v0.9.1/tflint_linux_amd64.zip -O /tmp/tflint.zip | |
sudo unzip -q -o -d /usr/local/bin/ /tmp/tflint.zip | |
echo -e "\n\n>>> Terraform verion" | |
terraform -version | |
echo -e "\n\n>>> Terraform Format (if this fails use 'terraform fmt' command to resolve" | |
terraform fmt -recursive -diff -check | |
echo -e "\n\n>>> tflint" | |
tflint | |
echo -e "\n\n>>> Terraform init" | |
terraform init | |
echo -e "\n\n>>> Terraform validate" | |
terraform validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run --rm -v ${PWD}:/source mcr.microsoft.com/azure-pipelines/vsts-agent:ubuntu-16.04-docker-18.06.1-ce-standard \ | |
/source/deployment/validate-tf.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment