**Describe the bug** A warning is logged when a TF `variable` is encountered with `nullable` set. `nullable` is a legitimate argument for a variable. https://developer.hashicorp.com/terraform/language/values/variables#disallowing-null-input-values `Unsupported argument; An argument named "nullable" is not expected here` **How you're running Regula** * I'm using Regula v3.0.0 as a CLI tool and my Terraform source code as an input: ```shell regula run -f table -v ``` **Operating System** Ubuntu 22.04 **IaC Configuration** ``` variable "foobar" { type = string default = null nullable = true } ```
Describe the bug
A warning is logged when a TF
variableis encountered withnullableset.nullableis a legitimate argument for a variable. https://developer.hashicorp.com/terraform/language/values/variables#disallowing-null-input-valuesUnsupported argument; An argument named "nullable" is not expected hereHow you're running Regula
Operating System
Ubuntu 22.04
IaC Configuration