Inspectopedia 2025.3 Help

Duplicated Terragrunt block

Reports duplicated Terragrunt blocks defined at the file root that share the same label (name), such as dependency, feature, generate, include, stack, or unit.

The inspection highlights multiple blocks of the same type that use an identical label. Only top‑level blocks are checked.

Example:

unit "vpc" { source = "git::git@github.com:acme/infrastructure-catalog.git//units/vpc?ref=v0.0.1" path = "vpc" } # duplicate unit "vpc" { source = "git::git@github.com:acme/infrastructure-catalog.git//units/database?ref=v0.0.1" path = "database" values = { engine = "postgres" version = "13" vpc_path = "../vpc" } }

Locating this inspection

By ID

Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.

TerragruntDuplicatedBlocks
Via Settings dialog

Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.

Settings or Preferences | Editor | Inspections | Terragrunt

Quick fixes available:

  • Navigate to duplicate

  • Rename block

  • Show all duplicates

  • Delete block

Inspection ID: TerragruntDuplicatedBlocks

Suppressing Inspection

You can suppress this inspection by placing the following comment marker before the code fragment where you no longer want messages from this inspection to appear:

//noinspection TerragruntDuplicatedBlocks

More detailed instructions as well as other ways and options that you have can be found in the product documentation:

Inspection Details

By default bundled with:

GoLand 2025.3, IntelliJ IDEA 2025.3, Qodana for Go 2025.3, Qodana for JVM 2025.3,

Last modified: 04 March 2026