Ranjith

Results 13 comments of Ranjith

i have the same problem ..i have a schedule that runs on the first day of the every month to update all the aws packages and every other aws packages...

Hi , Create a new python venv and do fresh installation of cdk 2.88.0 and try to run synth , it will through the same error message as in the...

Hi, sorry for the confusion, please find the below code snippet which will produce the error. copy and paste the below code snippet into app.py and run `cdk synth` it...

Hi, I was using the Aspects same way before but if you see the comments i have on the visit method (from the previous code i shared, i started to...

@rittneje , Yes that's correct i meant `not isinstance(node, WbStack)` but i replaced it with just Stack if you guys wanted to reproduce the issue by copy pasting the code...

also tried it like this and ended up getting the same error. ``` @jsii.implements(aws_cdk.IAspect) class AddTags: def visit(self, node): if isinstance(node, Stack) and not isinstance(node, WbStack): raise Exception("Found a stack...

Hi @rittneje ,@peterwoodworth , After the new release of cdk V2.89.0 my current version(2.70.0) of cdk that was working for me has started to remove the tags for many resources..i...

cdk managed singleton lambda functions and aws managed iam policies are some of the resource for which the tags are getting removed after the new release.

Hi, it looks the old binaries are back now and the tags are intact with the old versions of cdk . Also found a fix for the TagManager bug. change...

Hi, i'm afraid the actual issue with `TagManager.is_taggable(node):` still exist. i only found a workaround.