There was an error while loading. Please reload this page.
1 parent 53f49ab commit 6b5cb0cCopy full SHA for 6b5cb0c
serverless.component.yml
@@ -1,5 +1,5 @@
1
name: aws-dynamodb
2
-version: 1.1.0
+version: 1.1.1
3
author: ac360
4
org: serverlessinc
5
description: Provision an AWS DynamoDB Table
src/utils.js
@@ -18,7 +18,7 @@ async function createTable({
18
AttributeDefinitions: attributeDefinitions,
19
KeySchema: keySchema,
20
GlobalSecondaryIndexes: globalSecondaryIndexes.length ? globalSecondaryIndexes : undefined,
21
- LocalSecondaryIndexes: localSecondaryIndexes,
+ LocalSecondaryIndexes: localSecondaryIndexes.length ? localSecondaryIndexes : undefined,
22
BillingMode: 'PAY_PER_REQUEST'
23
})
24
.promise()
0 commit comments