Minify Terraform Online — Compact HCL Output
Compress HCL whitespace for smaller snippets. Comments may be stripped — use the formatter to preserve them.
Developer notes
• Uses parse + stringify with minimal indent. • Comments are typically dropped — use format-terraform to keep them. • Invalid HCL returns a parse error with line info. • Not a substitute for terraform apply or plan output.
When teams pick this route
• Compact a module excerpt for a runbook or internal wiki. • Reduce paste size in support tickets. • Compare byte size before/after manual cleanup. • Generate dense HCL for automated test fixtures.
Worked examples
Formatted module excerpt (column-aligned equals)
Verbose input
Minified output
Snippet pasted from a ticket (trailing spaces)
Verbose input
Minified output
Navigate related DevOps tools
Prefer readable output? Use format Terraform. Validate first with validate Terraform.
Minify Terraform FAQ
Whitespace compaction
Are comments kept?
Usually no — minify prioritizes size. Use the formatter with “Preserve comments” when comments matter.
Is minified HCL still valid?
Yes for well-formed input. The tool parses before stringify to avoid emitting broken HCL.
When not to minify?
Do not minify files you intend to edit collaboratively — use format instead.
More DevOps tools in this cluster
Looking for converters, encoders, formatters, and minifiers in one place? Developer tools hub Open the curated developer tools catalogue.