Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 655 Bytes

README.adoc

File metadata and controls

29 lines (21 loc) · 655 Bytes

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.