mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-07 01:35:53 -05:00
a67e56fb4e
* Bump wata727/tflint from 0.22.0 to 0.23.0 Bumps wata727/tflint from 0.22.0 to 0.23.0. Signed-off-by: dependabot[bot] <support@github.com> * remove dead config Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Admiralawkbar <Admiralawkbar@github.com>
31 lines
618 B
HCL
31 lines
618 B
HCL
// https://github.com/terraform-linters/tflint/blob/master/docs/guides/config.md
|
|
config {
|
|
module = false
|
|
force = false
|
|
|
|
// aws_credentials = {
|
|
// access_key = "AWS_ACCESS_KEY"
|
|
// secret_key = "AWS_SECRET_KEY"
|
|
// region = "us-east-1"
|
|
// }
|
|
|
|
// ignore_module = {
|
|
// "github.com/terraform-linters/example-module" = true
|
|
// }
|
|
|
|
// varfile = ["example1.tfvars", "example2.tfvars"]
|
|
|
|
// variables = ["foo=bar", "bar=[\"baz\"]"]
|
|
}
|
|
|
|
rule "aws_instance_invalid_type" {
|
|
enabled = false
|
|
}
|
|
|
|
rule "aws_instance_previous_type" {
|
|
enabled = false
|
|
}
|
|
|
|
// plugin "example" {
|
|
// enabled = true
|
|
// }
|