[CloudFormation] DynamoDB 테이블 만들기

tallhyun·2020년 5월 14일
0
AWSTemplateFormatVersion: '2010-09-09'

Resources:
  dbTable:
    Type:
      AWS::DynamoDB::Table
    Properties:
      AttributeDefinitions: 
        - 
          AttributeName: "userid"
          AttributeType: "S"
        - 
          AttributeName: "todoid"
          AttributeType: "S"
      BillingMode:
        PAY_PER_REQUEST
      KeySchema: 
        - 
          AttributeName: "userid"
          KeyType: "HASH"
        - 
          AttributeName: "todoid"
          KeyType: "RANGE"
      TableName: todos

참고: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html

profile
보안, 클라우드, 풀스택에 관심이 있습니다.

0개의 댓글