Kazuma Watanabe
Kazuma Watanabe
I'm a fan of [keyless signing](https://blog.chainguard.dev/zero-friction-keyless-signing-with-kubernetes/) ideas. In TFLint, we distribute signatures and a public key to verify that the release was created by us. This private key only exists...
Recently, I've come to think that [Module Inspection](https://github.com/terraform-linters/tflint/blob/f9629f0ffbf98b4d16e722ea1c43a89aec46f0d1/docs/user-guide/module-inspection.md) is a feature that is easily misunderstood by its name. This feature does inspect child modules, but discards all but the issues...
Fixes #527 This is a PoC of recursive directory scanning. I've heard that for large projects there are cases where you want to run tflint in a different context than...
I would like to manage the scheduled task with `ecs-cli`. For example: - `ecs-cli scheduled create "command"`: Override with the specified command and schedule task with the latest task definition....
To avoid problems like terraform-linters/tflint#400, it would be useful to be able to automatically generate rules not only from aws-sdk but also from terraform provider code. Since terraform-provider-aws is simple...
We've heard from some Azure users, will likely need to continuously upgrade their API version, unlike AWS #28 #29 Although the current automatic rule generation can reflect the update within...
### Community Note * Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request. * Please do...
## Introduction Enabling module inspection and inspecting from outside the module's directory will cause the module to fail to load. ```console $ tflint --module ./work Failed to load configurations; work/main.tf:1,1-18:...
Fixes https://github.com/terraform-linters/tflint/issues/571 As a result of the https://github.com/terraform-linters/tflint/pull/1510 refactoring, it's easier to add support for local values 🎉 Previously, the type of reference in the expression determined whether it could...
## Introduction Currently, module inspection is disabled by default. This is because it needs to run `terraform init` to build the module tree. This decision was made to lower the...