There was an error while loading. Please reload this page.
1 parent cddd33e commit cda92d8Copy full SHA for cda92d8
serverless.component.yml
@@ -1,5 +1,5 @@
1
name: aws-dynamodb
2
-version: 1.0.0
+version: 1.0.1
3
author: ac360
4
org: serverlessinc
5
description: Provision an AWS DynamoDB Table
src/serverless.js
@@ -74,7 +74,7 @@ class AwsDynamoDb extends Component {
74
console.log(`Table ${config.name} already exists. Comparing config changes...`)
75
76
// Check region
77
- if (config.region && this.state.region && config.reion !== this.state.region) {
+ if (config.region && this.state.region && config.region !== this.state.region) {
78
throw new Error(
79
'You cannot change the region of a DynamoDB Table. Please remove it and redeploy in your desired region.'
80
)
0 commit comments