Marcin Kielar

Results 46 comments of Marcin Kielar

Could we not just add a `-module` flag to `terraform validate`, telling it to validate the code as if it's a _reusable_ module, and not _root_ module? This would make...

@jbardin, obviously I don't know the internals of terraform too well. However, from a user stand point: If I do following: ``` terraform { required_providers { aws = { source...

This is over 2 years old, and 0.800 just started doing a better job at finding these cases which resulted with a wall of errors in my project. Thanks, mypy....

@JelleZijlstra My production code cut to be smaller: ```python import dataclasses as dc from abc import ABCMeta, abstractmethod @dc.dataclass(frozen=True) class CanaryConfiguration(metaclass=ABCMeta): @abstractmethod def is_fast_track(self) -> bool: """ """ @dc.dataclass(frozen=True) class...

Perhaps allowing to pass built-time arguments to snyk would help, if that would also allow passing `--target ` flag? (https://github.com/snyk/cli/issues/2170)?

``` → snyk --version 1.931.0 (standalone) ``` Same behaviour.

See: - https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#config-http-filters-router-x-envoy-retry-on Looks like Envoy already supports both cases: 1. The `xx` expansion is available by specifying values like `5xx` or `retriable-4xx`. 2. The selective configuration should be doable...

I think at least the Service Quota documentation (https://docs.aws.amazon.com/general/latest/gr/appmesh.html#limits_appmesh) could be improved. It currently only states the initial limit (3) and that **it is adjustable**, but not that there's hard...

Uhh, okay, I found #158, and the link to playground explains to use `%p` for explicitly formatting pointers, which worked. I still believe, however, that a word of explanation in...

Huh, there's even a pull request for it: https://github.com/quii/learn-go-with-tests/pull/616