s3-event源项目在部署时引发错误
chalice new-project
s3-event-source
chalice deploy错误:
chalice.deploy.deployer.ChaliceDeploymentError: ERROR - While deploying your chalice application, received the following error:
An error occurred (InvalidArgument) when calling the
PutBucketNotificationConfiguration operation: The notification destination
service region is not valid for the bucket location constraint发布于 2021-11-03 14:07:22
将圣杯应用程序部署到您创建s3存储桶的同一区域。
如果您的CLI存储桶在爱尔兰(eu-west-1),请在s3中运行:
export AWS_DEFAULT_REGION=eu-west-1根据您的s3存储桶更改地域。
https://stackoverflow.com/questions/69824424
复制相似问题