# 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.

- Skill: `cedws/terragrunt-0-93` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add cedws/terragrunt-0-93`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cedws/terragrunt-0-93/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: cedws (https://skillmd.com/u/cedws)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cedws/terragrunt-0-93

---


# 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`:

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

An `errors` block replaces the root retry attributes:

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

