VladRassokhin / intellij-hcl

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

kubernetes_ingress_v1 not supported #376

Closed markusheiden closed 2 years ago

markusheiden commented 2 years ago

Prerequisites

Installation details

Terraform Configuration Files

resource "kubernetes_ingress_v1" "ingress" {
 ...
}

Expected Behavior

Autocomplete support for the resource "kubernetes_ingress_v1" and inside the resource block ("metadata" etc.).

Actual Behavior

"kubernetes_ingress_v1" seems to be not known to the IDE / the plugin.

Steps to Reproduce

Create a terraform file with a "kubernetes_ingress_v1" resource. Try to autocomplete -> Does not work.

kriswuollett commented 2 years ago

It is not just kubernetes_ingress_v1. All supported versioned resource names seem to not be supported.

VladRassokhin commented 2 years ago

Fixed in 0.7.15

markusheiden commented 2 years ago

Thanks a lot for fixing this that fast!