Complete terragrunt toolkit with generation and validation capabilities
71
89%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Advisory
Suggest reviewing before use
Create custom tflint rules by adding .tflint.hcl:
plugin "terraform" {
enabled = true
preset = "recommended"
}
plugin "aws" {
enabled = true
version = "0.27.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
rule "terraform_naming_convention" {
enabled = true
}Create custom tfsec policies by adding .tfsec/config.yml:
minimum_severity: MEDIUM
exclude:
- AWS001 # Example: exclude specific rulesAnalyze complex dependency chains:
# Generate detailed graph (Terragrunt 0.93+ syntax)
terragrunt dag graph > graph.dot
# Convert to visual format
dot -Tpng graph.dot > graph.png
dot -Tsvg graph.dot > graph.svg
# Analyze for circular dependencies
grep -A5 "cycle" <(terragrunt dag graph 2>&1).tessl-plugin
generator
validator
assets
test
infrastructure
dev
vpc
.terragrunt-cache
vQkO-DhzgTpgpwJ7blrpPaU2Ru4
ThyYwttwki6d6AS3aD5OwoyqIWA
prod
vpc
.terragrunt-cache
Bm-9KlJkKa3TJUNWxskdQ8XUsbs
ThyYwttwki6d6AS3aD5OwoyqIWA
staging
vpc
.terragrunt-cache
NNoS18zFo5CPCcBZ4qheh3WJk48
ThyYwttwki6d6AS3aD5OwoyqIWA
references
test
infrastructure
dev
vpc
.terragrunt-cache
vQkO-DhzgTpgpwJ7blrpPaU2Ru4
ThyYwttwki6d6AS3aD5OwoyqIWA
prod
vpc
.terragrunt-cache
Bm-9KlJkKa3TJUNWxskdQ8XUsbs
ThyYwttwki6d6AS3aD5OwoyqIWA
staging
vpc
.terragrunt-cache
NNoS18zFo5CPCcBZ4qheh3WJk48
ThyYwttwki6d6AS3aD5OwoyqIWA