teemu-laakso
teemu-laakso
Hi! Is there any update on this? We ran into the same problem and the proposed solution for adding the target account as an environment variable would work for us....
I hit this bug with python and found a workaround. Taking the [example](https://docs.aws.amazon.com/cdk/v2/guide/tokens.html#tokens_lazy) from the CDK Guide: ``` class Producer: def __init__(self, func): self.produce = func ``` ``` class FixedProducer:...
I found a workaround for this bug. The following allows for synth time creation of any constructs with a callback: ``` class LazyCallback: __jsii_type__ = None def __init__(self, callback): self.callback...