Piotr Roszatycki
Piotr Roszatycki
@Tekunoff just provide your Aztec code so we could try to scan it.
I don't see any point. If you want to have full log stored in files or with custom format, then real [bunyan](https://github.com/trentm/node-bunyan) logger object should be used.
@dc2tom I had the same issue in CI/CD context and rather than fighting with cache or any other persistency it is better to add ZIP creation just before calling terraform...
I believe the endpoints should be a part of main VPC module as some `endpoints = {}` variable. The same pattern you have for node groups in EKS module. Then...
Hey, any comment maybe?
Suggestion: See https://github.com/hashicorp/terraform/blob/main/internal/cloud/state.go#L412-L422 Instead of throwing an error it should be `(nil, nil)` returned.
@sebasslash Ok, but there is still a bug: TFC behaves differently than Terraform without TFC when I run `terraform output`. It breaks my pipelines when I call `terraform output` after...
I did also a proper trait: ``` perl use v5.14; use mop; use Scalar::Util qw(blessed weaken); sub static { my $attr = shift; if ($attr->isa('mop::attribute')) { weaken(my $weak_attr = $attr);...
My workaround is an additional file `./types/global-fetch.d.ts` with `"typeRoots": ["./types", "./node_modules/@types"]` in `tsconfig.json`: ```ts declare type GlobalFetch = WindowOrWorkerGlobalScope ``` This bug is fixed in 04d405a342903274ff67c42dae51a89ee20e72dc but there is still...
@satishmolletipipra My guess is you forgot to use `"lib": ["dom"],` but you should be able to re-add this type as: ```ts /// declare interface GlobalFetch { fetch(input: RequestInfo, init?: RequestInit):...