Skip to content

Instantly share code, notes, and snippets.

@curx
Created October 23, 2021 22:29
Show Gist options
  • Select an option

  • Save curx/c17db9cb87fcc12ffa75d30ea32cd1ac to your computer and use it in GitHub Desktop.

Select an option

Save curx/c17db9cb87fcc12ffa75d30ea32cd1ac to your computer and use it in GitHub Desktop.
sample .tflint.hcl
config {
module = true
}
rule "terraform_deprecated_index" {
enabled = true
}
rule "terraform_unused_declarations" {
enabled = true
}
rule "terraform_comment_syntax" {
enabled = true
}
rule "terraform_documented_outputs" {
enabled = true
}
rule "terraform_documented_variables" {
enabled = true
}
rule "terraform_typed_variables" {
enabled = true
}
rule "terraform_naming_convention" {
enabled = true
}
rule "terraform_required_version" {
enabled = true
}
rule "terraform_required_providers" {
enabled = true
}
rule "terraform_unused_required_providers" {
enabled = true
}
rule "terraform_standard_module_structure" {
enabled = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment