mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 08:41:02 -05:00
6c2f03ffb4
Prepare tests for linters and formatter updates.
28 lines
586 B
HCL
28 lines
586 B
HCL
// https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/config.md
|
|
config {
|
|
call_module_type = "none"
|
|
force = false
|
|
}
|
|
|
|
plugin "terraform" {
|
|
enabled = true
|
|
preset = "recommended"
|
|
}
|
|
|
|
plugin "aws" {
|
|
enabled = true
|
|
version = "0.28.0"
|
|
source = "github.com/terraform-linters/tflint-ruleset-aws"
|
|
}
|
|
|
|
plugin "azurerm" {
|
|
enabled = true
|
|
version = "0.25.1"
|
|
source = "github.com/terraform-linters/tflint-ruleset-azurerm"
|
|
}
|
|
|
|
plugin "google" {
|
|
enabled = true
|
|
version = "0.26.0"
|
|
source = "github.com/terraform-linters/tflint-ruleset-google"
|
|
}
|