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
}
}