我有以下错误。
无服务器:操作失败!
Serverless Error ---------------------------------------
An error occurred: phoneNumberTable - CloudFormation cannot update a stack when a custom-named resource requires replacing. Rename mysite-api-phonenumber-dev and update the stack again…
我尝试删除数据库以查看它是否可以重新创建它但它仍然会出现相同的错误并且不会重新制作数据库? 我该怎么办?
我所做的最近在我的serverless.yml文件中更改了以下资源。
phoneNumberTable: #This table is used to track phone numbers used in the system
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:custom.phoneNumberTable}
AttributeDefinitions: #UserID in this case will be created once and constantly updated as it changes with status regarding the user.
- AttributeName: phoneNumber
AttributeType: S
KeySchema:
- AttributeName: phoneNumber
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: ${self:custom.dynamoDbCapacityUnits.${self:custom.pstage}}
WriteCapacityUnits: ${self:custom.dynamoDbCapacityUnits.${self:custom.pstage}}
我在复制和粘贴时不小心使用userId创建了它,因此我将其更改为phoneNumber以获取哈希键,但此更改现在不会反映出来!
编辑::
我找到了一个解决方案,但这很糟糕。如果我执行sls删除--stage dev它将删除我的舞台的所有内容,但字面上一切...然后我必须执行sls deploy --stage dev再次开始部署,同时我的数据库被清除所有数据......不知何故必须有更好的方式。
答案 0 :(得分:6)
答案 1 :(得分:1)
我发现我需要插入一些变量才能使其正常工作。
环境变量:
USERS_TABLE: "users-${opt:stage, self:provider.stage}-${self:provider.environment.BUILD_NUMBER}"
表名:
TableName: ${self:provider.environment.USERS_TABLE}
在我的代码中:
const existingUser = await dynamoDb.get({
TableName: process.env.USERS_TABLE,
Key: {
email,
},
}).promise();