Skip to content

Commit 9dc0528

Browse files
committed
Add templates
1 parent bab4690 commit 9dc0528

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.DS_Store
2+
*.sublime-project
3+
*.sublime-workspace
4+
*.log
5+
.serverless
6+
v8-compile-cache-*
7+
jest/*
8+
coverage
9+
testProjects/*/package-lock.json
10+
testProjects/*/yarn.lock
11+
.serverlessUnzipped
12+
node_modules
13+
.vscode/
14+
.eslintcache
15+
dist
16+
.idea
17+
build/
18+
.env*
19+
.cache*
20+
.serverless
21+
.serverless_nextjs
22+
.serverless_plugins
23+
env.js
24+
tmp
25+
package-lock.json
26+
yarn.lock
27+
test
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: aws-dynamodb-starter
2+
component: aws-dynamodb
3+
org: serverlessinc
4+
description: Deploys a serverless NoSQL database powered by AWS DynamoDB
5+
keywords: aws, serverless, nosql, database
6+
repo: https://github.com/serverless-components/aws-dynamodb
7+
license: MIT
8+
9+
inputs:
10+
deletionPolicy: delete # allows table to be removed. This property is a safe guard.
11+
attributeDefinitions:
12+
- AttributeName: attribute1
13+
AttributeType: S
14+
- AttributeName: attribute2
15+
AttributeType: N
16+
keySchema:
17+
- AttributeName: attribute1
18+
KeyType: HASH
19+
- AttributeName: attribute2
20+
KeyType: RANGE
21+
region: us-east-1

0 commit comments

Comments
 (0)