HCL
Conflicting properties
Error
New
Last modified: 03 December 2024Reports 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
- 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.
ConflictingProperties
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Terraform and HCL, 243.23126 |
Thanks for your feedback!
Was this page helpful?