This commit is contained in:
Joe DeCapo 2023-05-06 17:13:15 -05:00 committed by Jacob Heider
parent c2dcf4d6a3
commit c7ddf19347
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,30 @@
distributable:
url: https://github.com/terraform-linters/tflint/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
versions:
github: terraform-linters/tflint
strip: /v/
provides:
- bin/tflint
build:
dependencies:
go.dev: '*'
tea.xyz/gx/make: '*'
script: |
export GOPATH="$PWD/build"
mkdir -p dist
go build -v -ldflags="$LDFLAGS" -o dist/tflint
mkdir -p {{prefix}}/bin
mv dist/tflint {{prefix}}/bin/
env:
LDFLAGS:
[-s, -w]
test:
script: |
# tflint returns exitstatus: 0 (no issues), 2 (errors occured), 3 (no errors but issues found)
test "" = "$(tflint test.tf)"
tflint --version | grep {{version}}

View file

@ -0,0 +1,12 @@
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4"
}
}
}
provider "aws" {
region = var.aws_region
}