Mutahhir Hayat

Results 10 issues of Mutahhir Hayat

While working on the CLI, I found it a bit annoying that the *.js and *.d.ts files show up alongside our *.ts files. I also realize that we're compiling everything...

Fixes #1715 This PR adds the `-terraform-parallelism` flag to the CLI. This flag is only available for `deploy` and `destroy`. One note here is that due the nature of `deploy`,...

Windows integration tests were disabled due to them blocking the 0.18 release. The only failing ones were the java integration tests for windows. We need to investigate, and re-enable the...

windows
priority/awaiting-more-evidence
tech-debt
feature/integration-test

```tf resource "aws_instance" "server" { ami = "ami-a1b2c3d4" instance_type = "t2.micro" } ``` # actual ```go import constructs "github.com/aws/constructs-go/constructs" /*Provider bindings are generated by running cdktf get. See https://cdk.tf/provider-generation for...

bug
priority/important-longterm
feature/convert

https://github.com/hashicorp/terraform-cdk/pull/2632#discussion_r1115403914

bug
priority/important-longterm
feature/convert

```py aws_rds_cluster_changeme_aws_aurora_cluster_instance = aws.rds_cluster.RdsCluster(self, "changeme_aws_aurora_cluster_instance", master_password=changeme_aws_aurora_cluster_password.value, master_username=changeme_aws_aurora_cluster_username.value, skip_final_snapshot=True ) ``` ### Error ``` Command output on stderr: Traceback (most recent call last): File "/Users/mutahhir/src/scratchpad/terraform-convert-examples/converted-langs/python/aws/main.py", line 6, in from aws_db_instance.restore_db_from_snapshot.main import...

bug
language/python
priority/important-longterm
feature/convert

### Describe the bug Rosetta respects a multi-line assignment when the right hand side expression is a function, which is not allowed in Python. It's interesting to note that the...

bug
p2

### Describe the bug Typescript template strings containing escaped `${}` sections are not handled correctly in Python and C#. ### Expected Behavior The following Typescript code: ```ts `\${Template with Terraform...

bug
p2

Local Values are made available in the .tfstack.hcl language. The existing codebase already had support for local values, it was incomplete was missing the machinery required to reference local values...

### Description Ensure that the `manifest.json` file has stable output. Removes instances where test snapshots fail when no content has changed, but `JSON.stringify` shuffles object attribute order. Suggested by #3561...