Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created September 2, 2019 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xximjasonxx/93516b0ea095b279591e72619be9db70 to your computer and use it in GitHub Desktop.
Save xximjasonxx/93516b0ea095b279591e72619be9db70 to your computer and use it in GitHub Desktop.
AWSTemplateFormatVersion: 2010-09-09
Description: "Creates infrastructure for Thumnbail Creator"
Resources:
ImageTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: "Id"
AttributeType: "S"
KeySchema:
- AttributeName: "Id"
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 5
WriteCapacityUnits: 5
TableName: "ImageDataTable2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment