From e6d7c7de30796b68faea1c3529446222ec1fe959 Mon Sep 17 00:00:00 2001 From: "Y.H LIEN" Date: Fri, 10 Nov 2023 19:16:43 +0900 Subject: [PATCH] fix: database custom tablename deployment error --- lib/constructs/persistence/database.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/constructs/persistence/database.ts b/lib/constructs/persistence/database.ts index 1870a28dd..1b635b913 100644 --- a/lib/constructs/persistence/database.ts +++ b/lib/constructs/persistence/database.ts @@ -172,7 +172,7 @@ export class DynamoDatabase extends Construct { encryption: dynamodb.TableEncryption.DEFAULT, removalPolicy: RemovalPolicy.RETAIN, timeToLiveAttribute: 'ttl', - tableName: 'waseda-user-profile', + tableName: 'waseda-profile', readCapacity: 1, writeCapacity: 1, },