Kazuma Watanabe

Results 146 comments of Kazuma Watanabe

Now, drunker can't specify it. However, I'd like to add this feature. If you have a patch, please send it. I'll review your pull request :)

TFLint can also run as an LSP server compliant with the Language Server Protocol v3.14.0 so that it can be integrated with any editor. Here is a sample of simple...

Thanks for your great suggestion. At first, I thought that this feature was very useful, but now I do not think so... After all, because we want to manage the...

IMO, I think that it is better to use `ecs-params.yml` recently added in #328 for this purpose now. For example: ```yaml version: 1 task_definition: ecs_network_mode: host scheduled_tasks: - schedule_expression: "cron(0...

@ineffyble That's a good idea. A concern is that there is no way to get the currently configured region. There are several ways to configure region, so I think we...

You can create a rule from a template with `go run ./rules/generator`: https://github.com/terraform-linters/tflint-ruleset-aws#add-a-new-rule Please refer to the following documents for the SDK's API: https://pkg.go.dev/github.com/terraform-linters/tflint-plugin-sdk/tflint#Runner

Yes, I think static validation should ideally be included in providers. On the other hand, I think there are some challenges in static validations by providers: - Since it is...

Isn't the value of `var.egress_only_gateway` null? In Terraform, if null is given, the attribute will be treated as unspecified: https://www.terraform.io/docs/language/expressions/types.html#null

Unfortunately, this rule doesn't consider the `count` attribute, so even if `count = 0`, it's supposed to create a resource, and checks if the `progress_only_gateway_id` is set. This behavior seems...