Terragrunt 0 93

Apply Terragrunt 0.93 HCL, CLI, orchestration, migration, and behaviour changes. Load for Terragrunt work targeting 0.93 or later when the model's knowledge may predate the 2025-10-31 release.

cedws 2f8414d 2 files · 970 B Updated

File contents

Terragrunt 0.93

This overview applies to target Terragrunt versions of at least 0.93.

Removed HCL

Breaking change: the skip, retryable_errors, retry_max_attempts, and retry_sleep_interval_sec root attributes were removed.

An exclude block replaces skip:

exclude {
  if      = true
  actions = ["all"]
}

An errors block replaces the root retry attributes:

errors {
  retry "transient" {
    retryable_errors   = [".*Error: timeout.*"]
    max_attempts       = 3
    sleep_interval_sec = 5
  }
}

cedws/skills/tree/main/terragrunt/skills/terragrunt-0-93 commit 2f8414db9d

Frequently asked questions

npx skillmds@latest add cedws/terragrunt-0-93