Git Product home page Git Product logo

terraform-aws-dynamodb-tables's Introduction

Terraform AWS Dynamodb Tables

This module simplifies creating dynamodb tables. The minimum information required is a name for the table, each table can then contain different values for read/write capacity.

Example

module "tables" {
  source     = "vistaprint/dynamodb_tables/aws"
  table_info = [
    {
      name = "${var.prefix}Table1"
    },
    {
      name = "${var.prefix}Table2"
      read_capacity = 2
      write_capacity = 2
    }
}

Testing

This module uses the tfmodtest framework. After making some changes run rake preflight from the root of the repository to run all tests for the module. This will require:

  • A config file in test\cloudfront-cloudwatch-monitors\config\config-dev.yml
terraform-version: 0.11.0
project-name: dynamodb test tests
aws:
  profile: <profile>
  region: <region>
  • A secrets file in test\dynamodb_tables\secrets.yml:
region: <region>
aws_access_key_id: <access_key_id>
aws_secret_access_key:  <secret_access_key>

terraform-aws-dynamodb-tables's People

Contributors

daniebker avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.