Pahud Hsieh

Results 356 comments of Pahud Hsieh

Can you explain a little bit more about what `secret token` are you expecting? [addServiceAccount()](https://github.com/aws/aws-cdk/blob/495204f8db6925ce8f2b854aa7793d331505791a/packages/aws-cdk-lib/aws-eks/lib/cluster.ts#L1079-L1084) essentially creates a new [ServiceAccount](https://github.com/aws/aws-cdk/blob/495204f8db6925ce8f2b854aa7793d331505791a/packages/aws-cdk-lib/aws-eks/lib/service-account.ts#L57) construct and I didn't see any secret token to be...

probably related to https://github.com/aws/aws-cdk/issues/30067

This looks like an error from CFN. Can you run `npx cdk synth` and check the `FunctionName` prop of the two stacks and see if there's any difference?

>Reproduction Steps create multiple tags on the stack level. Can you share the minimal code snippets that reproduces this bug?

Hi It would be helpful if you can provide some minimal self-sustainable sample code so we can discuss the workaround. This seems not a bug but a general guidance request...

We generally recommend using [custom resource provider framework](https://github.com/aws/aws-cdk/tree/main/packages/aws-cdk-lib/custom-resources#provider-framework) so you can just focus on the onCreate, onUpdate, onDelete event handling. Is there any reason you need to handle that rather...

This doesn't seem to be a bug and I am moving this to discussion for general guidance.

Hi @Pipo93 We won't track closed issues like this. Could you help us create a new issue and link back to this one? Thanks.

I probably would modify here https://github.com/aws/aws-cdk/blob/eca1bcf0b8a449d07692e6363cefa149b1fe0ce4/packages/aws-cdk-lib/aws-batch/lib/ecs-container-definition.ts#L616 to ```ts this.readonlyRootFilesystem = is_windows() ? undefined : props.readonlyRootFilesystem ?? false; ``` This will make sure `readonlyRootFilesystem` would always be undefined when OS is...

Thank you for the report. Any chance you could share a tiny repo that we can check out and reproduce it in our local environment?