github gruntwork-io/terragrunt v0.77.18

latest releases: v0.79.0, v0.78.4, v0.78.3...
one month ago

✨ New Features

Support for HCL formatting with the render command

As part of the CLI Redesign experiment, the render command now supports HCL formatting for rendered configurations, which is the default output format.

Using the render command with HCL formatting allows users to get a quick, minimal evaluation of Terragrunt unit configurations with as much pre-processing done as possible.

For example, the following terragrunt.hcl file:

# terragrunt.hcl

locals {
  aws_region = "us-east-1"
}

inputs = {
  aws_region = local.aws_region
}

Renders to the following HCL:

$ terragrunt render
locals {
  aws_region = "us-east-1"
}
inputs = {
  aws_region = "us-east-1"
}

Using the render command with HCL formatting offers a way to resolve complex HCL function evaluation, include merging or string interpolation, etc. to achieve equivalent Terragrunt HCL configurations that are easier to reason about.

What's Changed

Full Changelog: v0.77.17...v0.77.18

Don't miss a new terragrunt release

NewReleases is sending notifications on new releases.