Inspectopedia Help

Conflicting properties

Reports conflicting properties in an HCL block.

Example of a problem:

provider "kubernetes" { version = "~> 1.25" config_path = "~/.kube/config" version = "~> 1.24" }

In this example, the version property is declared twice in the Kubernetes provider block, which is an error.

Example of correction:

provider "kubernetes" { version = "~> 1.25" config_path = "~/.kube/config" }

Powered by: Terraform and HCL plugin

Inspection Details

By default bundled with:

IntelliJ IDEA 2024.1, Qodana for JVM 2024.1,

Can be installed with plugin:

Terraform and HCL, 241.16690

Last modified: 29 April 2024