diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b8e6b4bd5d..0ebf29818fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ Note: Can be used with `oxsecurity/megalinter@beta` in your GitHub Action mega-l - [yamllint](https://github.com/adrienverge/yamllint) fix error/warning count to work with different log output formats - Improve support for single argument in `get_list_args` function - [Powershell](https://github.com/PowerShell/PSScriptAnalyzer#readme) added missing schema property `POWERSHELL_POWERSHELL_FORMATTER_OUTPUT_ENCODING` + - [tflint](https://github.com/terraform-linters/tflint) added missing schema property `TERRAFORM_TFLINT_SECURED_ENV` - Doc diff --git a/megalinter/descriptors/schemas/megalinter-configuration.jsonschema.json b/megalinter/descriptors/schemas/megalinter-configuration.jsonschema.json index 6855bad36a9..85a7b1fcbca 100644 --- a/megalinter/descriptors/schemas/megalinter-configuration.jsonschema.json +++ b/megalinter/descriptors/schemas/megalinter-configuration.jsonschema.json @@ -21864,6 +21864,13 @@ "title": "TERRAFORM_TFLINT: Custom config file path", "type": "string" }, + "TERRAFORM_TFLINT_SECURED_ENV": { + "$id": "#/properties/TERRAFORM_TFLINT_SECURED_ENV", + "default": true, + "description": "TERRAFORM_TFLINT: Allows to send the full env to **tflint --init**. Initialized with default value `true`. Set to `false` to allow `tflint --init` to access your env vars.", + "title": "TERRAFORM_TFLINT: Secured Environment Flag", + "type": "boolean" + }, "TERRAFORM_TFLINT_UNSECURED_ENV_VARIABLES": { "$id": "#/properties/TERRAFORM_TFLINT_UNSECURED_ENV_VARIABLES", "default": [],