Skip to content

nsbno/terraform-aws-dynamodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dynamodb

Set up a DynamoDB table! In most cases where you only need a simple table, it may be easier to just use the default aws_dynamodb_table resource from Terraform.

Usage

Remember to check out the variables and outputs to see all options.

module "dynamodb" {
  source = "github.com/nsbno/terraform-aws-dynamodb?ref=x.y.z"

  table_name = "test_db"
  hash_key   = "pk"
}

Examples

Simple DynamoDB

Simple DynamoDB Setup.

DynamoDB with Autoscaling

Setup including autoscaling.