Jon Steinich
Jon Steinich
I suspect this may be related to https://github.com/aws/jsii/issues/1919. Could you try explicitly specifying type names where the properties are being omitted?
> I guess this should be closed since it's an issue with jsii Likely, but we might be able to adjust the intermediate typescript code in a way that generates...
There are a couple related issues in the upstream jsii library pertaining to to the required properties: - https://github.com/aws/jsii/issues/716 - https://github.com/aws/jsii/issues/715 - Also similar issue seen in cdktf: https://github.com/hashicorp/terraform-cdk/issues/1860 The...
> Where/how is the azurerm provider schema produced? The schema comes from a [Terraform cli command](https://www.terraform.io/cli/commands/providers/schema) > And where/how is cdk consuming this? The resulting schema is parsed and used...
Created https://github.com/aws/jsii/issues/3551 to track a potential jsii issue.
Seems related to https://github.com/aws/jsii/issues/1919 (Passing dict in lieu of jsii structs does not consistently work).
While more functionality has been added to reduce the need for using `fqn`, it still doesn't change that `fqn` is less useable to users in the cases that it would...
`stack2.dependsOn(stack1)` just returns a `boolean` to indicate if `stack2` depends on `stack1`. `stack2.addDependency(stack1)` is the way to indicate that `stack2` should depend on `stack1`. Perhaps a different name would make...
@rirze Thanks for sharing your workflow. I could see having some like `importFrom` available on all resources. This would basically just do what you are already doing with an override...
> If you want to move forward with this idea, do you see a particular way of exposing this to the user? I've seen @ansgarm detail an approach using an...