Ben Drucker
Ben Drucker
Hey there, Sorry for the long delay in responding. This plugin relies on [fluent-plugin-kubernetes_metadata_filter](https://github.com/fabric8io/fluent-plugin-kubernetes_metadata_filter) to append metadata. It figures out which pod a log line belongs to based on its...
`KUBERNETES_META=true` means meta is included, while false means its excluded. Perhaps saying "Include Kubernetes metadata..." (no exclude) would be clearer?
Your workaround looks correct. As for the new feature, I'd go with the first version but invert the arguments. Callback first, options second.
Verification is currently provided via a `signing_key`: https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#signing_key In theory we could also provide the ability to set a checksum directly rather than trusting the one in the GitHub release....
Yeah I'd agree that's the right solution. Finding and pasting checksums is a poor user experience and in practice leads most people opt out of integrity checking. Lock files make...
#1315 (`-chdir`) would prevent this edge case. I can make some time to work on that soon. The ability to pass multiple modules and partial modules (single files) has been...
Sure, we can discuss further on that issue. Terraform did this for the sake of simplicity, because having various commands/code paths need to consider the working directory led to inconsistency/bugs:...
A variation on this: `DiffSuppressFunc` is also not supported for `schema.TypeMap`. This prevents a provider from implementing diff suppression on a map, for example: https://www.terraform.io/docs/providers/kubernetes/r/resource_quota.html https://www.terraform.io/docs/providers/kubernetes/r/limit_range.html Both of these resources...
See also https://github.com/terraform-linters/tflint-ruleset-terraform/pull/43 — TFLint will soon be able to detect the use of legacy splat expressions in directives and recommend that square brackets be used instead.
That's basically exactly what [proxyquire](https://github.com/thlorenz/proxyquire)'s API looks like. Have you tried it?