forked from thombergs/code-examples
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsample.yaml
More file actions
22 lines (22 loc) · 671 Bytes
/
sample.yaml
File metadata and controls
22 lines (22 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AWSTemplateFormatVersion: "2010-09-09"
Description: A sample template for creating a stack with a bucket and a DynamoDB table.
Resources:
S3BucketForPoc:
Type: AWS::S3::Bucket
Properties:
BucketName: io.pratik.profileimages
DynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: entities
AttributeDefinitions:
-
AttributeName: "pk"
AttributeType: "S"
KeySchema:
-
AttributeName: "pk"
KeyType: "HASH"
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5