Jon Steinich
Jon Steinich
I think it would be better to focus effort on fixing https://github.com/aws/jsii/issues/2436. See the discussion on #1606 for more context.
`Testing.synthScope` internally creates a new stack. I don't believe there's been any testing done on nested stacks, so I'm not surprised that they don't work correctly. We could either make...
There are actually a couple issues here: 1. `TerraformIterator` should be able to use a set directly without converting to a list and back to a set (not really related...
> I would still be for having support in the iterator, if only for making the L2 construct, for the simple reason that it would give the correct output reliably....
I agree that for fresh projects Terraform variables don't really seem like the best use of cdktf; however, I think they could be useful in migrating existing Terraform workflows into...
> Is there any intention of adding this to the vars files? Just trying to plan how we should approach this and also if it would be welcomed if we...
You could try setting an environment variable as described [here](https://github.com/cyrilgdn/terraform-provider-postgresql/issues/178#issuecomment-1076494259). cdktf doesn't currently support passing flags to Terraform, but you can also run Terraform directly from the stack output directory.
#734 is asking for the same flag.
`MaxDeliveryCount` is technically required, but that information is lost when generating the C# bindings (it's present in TypeScript). https://github.com/aws/jsii/issues/715 has more information. C# 11 will potentially have `required` properties which...
@aayushharwani-aidash This would be adding additional testing capabilities. Take a look [here](https://www.terraform.io/cdktf/test/unit-tests) for more information on testing. Technically this involves adding another function similar to this one, but for looking...