From 49e3e2a895fcfbdeee071aee576bd3563ddf9cfe Mon Sep 17 00:00:00 2001 From: Dev Singh Date: Mon, 14 Jul 2025 14:22:43 -0400 Subject: [PATCH] Update main.yml --- cloudformation/main.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cloudformation/main.yml b/cloudformation/main.yml index d9740e0a..2fa969cf 100644 --- a/cloudformation/main.yml +++ b/cloudformation/main.yml @@ -415,13 +415,13 @@ Resources: - AttributeName: netid_list KeyType: HASH - ExternalMembershipV2RecordsTable: + ExternalMembershipV3RecordsTable: Type: "AWS::DynamoDB::Table" DeletionPolicy: "Retain" UpdateReplacePolicy: "Retain" Properties: BillingMode: "PAY_PER_REQUEST" - TableName: infra-core-api-membership-external-v2 + TableName: infra-core-api-membership-external-v3 DeletionProtectionEnabled: true PointInTimeRecoverySpecification: PointInTimeRecoveryEnabled: !If [IsProd, true, false] @@ -431,19 +431,19 @@ Resources: - AttributeName: "memberList" AttributeType: "S" KeySchema: - - AttributeName: "netId" - KeyType: "HASH" - AttributeName: "memberList" + KeyType: "HASH" + - AttributeName: "netId" KeyType: "RANGE" GlobalSecondaryIndexes: - IndexName: "invertedIndex" KeySchema: - - AttributeName: "memberList" - KeyType: "HASH" - AttributeName: "netId" + KeyType: "HASH" + - AttributeName: "memberList" KeyType: "RANGE" Projection: - ProjectionType: "ALL" + ProjectionType: "KEYS_ONLY" RoomRequestsTable: