Pahud Hsieh

Results 356 comments of Pahud Hsieh

Thank you for your feedback. Yes we should add this support in a pull request.

Hi After you CDK deploy, you need to `assign users and groups` to the new domain. And you probably will see the `ResourceInUse` error though, but you will now be...

@hossein-jazayeri Agree. This is definitely not an acceptable user experience. We have reported this internally to the relevant team. I will update here when I have any news. This is...

Unfortunately we don't have any workaround from CDK's perspective. Are we still having the issue now?

I can confirm this deploys in CDK `2.153.0`. But it won't add your user from AWS Identity Center as a userprofile to the created `domain`. ```ts export class SagemakerTsStack extends...

internal tracking: V848394195 V1496888112 V1497381365

Confirmed that you need to create `CfnApplicationAssignment` as below: ```ts export class SagemakerTsStack extends cdk.Stack { constructor(scope: Construct, id: string, props?: cdk.StackProps) { super(scope, id, props); const vpc = ec2.Vpc.fromLookup(this,...

Thank you mazyu. We are looking forward to your PRs as always :)

Hi @sachaos We appreciate that. Feel free to submit your PR. Thank you!

Hi The `override_logical_id` approach is an interesting hack that makes your CDK code to synthesize into exactly the same logical ID of the existing resource from an existing CFN stack...