github.com/jpreese/tflint@v0.19.2-0.20200908152133-b01686250fb6/tflint/test-fixtures/config/config.hcl (about) 1 config { 2 module = true 3 deep_check = true 4 force = true 5 6 aws_credentials = { 7 access_key = "AWS_ACCESS_KEY" 8 secret_key = "AWS_SECRET_KEY" 9 region = "us-east-1" 10 profile = "production" 11 shared_credentials_file = "~/.aws/myapp" 12 } 13 14 ignore_module = { 15 "github.com/terraform-linters/example-module" = true 16 } 17 18 varfile = ["example1.tfvars", "example2.tfvars"] 19 20 variables = ["foo=bar", "bar=['foo']"] 21 } 22 23 rule "aws_instance_invalid_type" { 24 enabled = false 25 } 26 27 rule "aws_instance_previous_type" { 28 enabled = false 29 } 30 31 plugin "foo" { 32 enabled = true 33 } 34 35 plugin "bar" { 36 enabled = false 37 }