Skip to content

Miouge1/tflint-ruleset-terraform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TFLint Ruleset for Terraform Language

Build Status GitHub release License: MPL 2.0

TFLint ruleset plugin for Terraform Language

This ruleset focus on possible errors and best practices about Terraform Language.

Requirements

  • TFLint v0.42+
  • Go v1.21

Installation

This ruleset is built into TFLint, so you usually don't need to worry about how to install it. You can check the built-in version with tflint -v:

$ tflint -v
TFLint version 0.47.0
+ ruleset.terraform (0.4.0-bundled)

If you want to use a version different from the built-in version, you can declare plugin in .tflint.hcl as follows and install it with tflint --init:

plugin "terraform" {
    enabled = true
    version = "0.4.0"
    source  = "github.com/terraform-linters/tflint-ruleset-terraform"
}

For more configuration about the plugin, see Plugin Configuration.

Rules

See Rules.

Building the plugin

Clone the repository locally and run the following command:

$ make

You can easily install the built plugin with the following:

$ make install

Note that if you install the plugin with make install, you must omit the version and source attributes in .tflint.hcl:

plugin "terraform" {
    enabled = true
}

About

TFLint ruleset for Terraform Language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Go 99.9%
  • Makefile 0.1%