Daniel Schmidt
                                            Daniel Schmidt
                                        
                                    Sorry there is some misunderstanding happening here, we support TFC. The issue you are referencing is about a the current way of using terraform cloud (through the remote backend) is...
I don't like strict because it does not cover the logical id part, at least in my understanding of the word 🤔
You can set `NODE_OPTIONS` yourself as a temporary solution. Besides it seems like the amount of code we generate is too much for TS to handle. While there is not...
I tried to reproduce this, on OSX it seems to work, can you check if this production case fails as well for you? https://github.com/DanielMSchmidt/cdktf-issue-1506
It looks like we synthesize ` "for_each": "${toset(tolist(aws_acm_certificate.AcmCertificate.domain_validation_options))}"`, where [`domain_validation_options` is already a Set of objects](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/acm_certificate#domain_validation_options). The [Error](https://gist.github.com/ignaloidas/2764d3345233bf562cce093db5f9df29#file-gistfile1-txt-L287) terraform throws indicates we should use a map with static keys instead....
> Would it be possible to make Terraform.fromList return an ES6 style iterator ([MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators), [blog](https://daily.dev/blog/why-do-you-need-to-know-about-array-like-objects)), so that we could do things like this? We discussed this in depth, but the...
We don't need this if we only use the terraform cli and no manual API calls, adding a low prio because of this.
I think it should print a better error message, but it should not work. The token could have any value and the serialization to JSON happens with the token as...
The problem that we are facing is that we generate quite a bit of TS code for JSII to translate into all other languages and JSII has some performance problems....
Yeah that's not ideal, we are thinking about replacing our custom TFC API calls with Terraform so we can implement all the features once instead of twice, the issue is...