VladRassokhin / intellij-hcl

HCL language support for IntelliJ platform based IDEs
Apache License 2.0
244 stars 48 forks source link

Plugin inspection not warning about missing required properties #364

Open slessardjr opened 2 years ago

slessardjr commented 2 years ago

Prerequisites

Installation details

Terraform Configuration Files

resource "aws_instance" "test" {

}

Inspection properties Inspection properties

Exception

Expected Behavior

I would expect the inspection to ask me to add the required fields.

Actual Behavior

Blank. No inspection warning.

Steps to Reproduce

Please list the steps required to reproduce the issue, for example:

  1. Install GoLand
  2. Install Terraform / HCL Plugin
  3. Clone metadata from https://github.com/VladRassokhin/terraform-metadata
  4. Start / Restart GoLand
  5. Create Terraform Project
  6. Add a provider
  7. Init project
  8. Add a resource that would have required fields (example: aws_instance)