TFLint ruleset plugin for Terraform Google Cloud Platform provider
- TFLint v0.42+
- Go v1.22
You can install the plugin by adding a config to .tflint.hcl
and running tflint --init
:
plugin "google" {
enabled = true
version = "0.28.0"
source = "github.com/terraform-linters/tflint-ruleset-google"
}
For more configuration about the plugin, see Plugin Configuration.
100+ rules are available. See the documentation.
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 "google" {
enabled = true
}
If you are interested in adding a new rule to this ruleset, you can use the generator. Run the following command:
$ go run ./rules/generator
Follow the instructions to edit the generated files and open a new pull request.