Enhancing Terraform Deployments with TFLint in GitHub Actions

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
Sevalla - Deploy and host your apps and databases, now with $50 credit!
Sevalla is the PaaS you have been looking for! Advanced deployment pipelines, usage-based pricing, preview apps, templates, human support by developers, and much more!
sevalla.com
featured
  1. tflint

    A Pluggable Terraform Linter

    name: Terraform deploy Log Analytics with TFLint checks on: workflow_dispatch: jobs: terraform: runs-on: ubuntu-latest env: ARM_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} ARM_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} ARM_SUBSCRIPTION_ID: ${{ secrets.AZURE_SUBSCRIPTION_ID }} ARM_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} TF_VAR_client_id: ${{ secrets.AZURE_CLIENT_ID }} TF_VAR_client_secret: ${{ secrets.AZURE_CLIENT_SECRET }} TF_VAR_subscription_id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} TF_VAR_tenant_id: ${{ secrets.AZURE_TENANT_ID }} steps: - name: Checkout code uses: actions/[email protected] - name: Set up Terraform uses: hashicorp/setup-terraform@v2 with: terraform_version: 1.5.5 - name: Cache plugin dir uses: actions/cache@v4 with: path: ~/.tflint.d/plugins key: ${{ matrix.os }}-tflint-${{ hashFiles('.tflint.hcl') }} - name: Setup TFLint uses: terraform-linters/setup-tflint@v4 with: tflint_version: v0.52.0 - name: Show version run: tflint --version - name: Init TFLint run: tflint --init env: # https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting GITHUB_TOKEN: ${{ github.token }} - name: Run TFLint run: tflint -f compact - name: Terraform Init run: terraform init - name: Terraform Plan run: terraform plan - name: Terraform Apply if: github.ref == 'refs/heads/main' run: terraform apply -auto-approve

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • 🛡️ Secure, Lint, and Validate Your Terraform Like a Pro

    2 projects | dev.to | 19 May 2025
  • How to Add Comments in Terraform Code

    2 projects | dev.to | 10 Feb 2025
  • Saw a not-so-good thing in my pipeline. How do we fix it?

    4 projects | /r/Terraform | 2 Jun 2023
  • Top 4 Infrastructure as Code Open-Source Tools for 2023

    3 projects | /r/webdevelopment | 3 May 2023
  • Sorting variables and outputs

    3 projects | /r/Terraform | 1 Mar 2023

Did you know that Go is
the 4th most popular programming language
based on number of references?