May I know why "AWS::ECR::Repository" resource is ...
# help
b
May I know why "AWS:ECR:Repository" resource is used for starting the SST application? Whereas the Serverless framework doesn't require this resource for deploying the lambda functions.
f
Hey @Bhuvaneshwaran Rajendran it’s part of the CDKToolkit stack.
Just to add a bit of context, CDK needs to first deploy a
bootstrap
stack into your AWS account that includes an S3 bucket, ECR repository, etc before it’s able to deploy into your account.
b
Thank you @Frank