dynamodb-autoscaling
chgangaraju/dynamodb-autoscaling/aws
Terraform module for creating dynamodb table with autoscaling
terraform-aws-dynamodb-autoscaling Terraform module to create dynamodb table with autoscaling enabled Example 1 provider "aws" { region = "us-east-1" } module "test_table" { source = "chgangaraju/terraform-aws-dynamodb-autoscaling" version = "1.0.1" key = "id" table_name = "test" } Example 2 provider "aws" { region = "us-east-1" } variable "capacity" { type = "map" default = { min_read = 100 max_read = 4000 min_write = 100 max_write = 4000 } } module "test_table" { source = "chgangaraju/terraform-aws-dynamodb-autoscaling" version = "1.0.1" key = "id" table_name = "test" read_capacity = 100 write_capacity = 100 capacity = "${var.capacity}" }
| Name | Type | Description | Default |
|---|---|---|---|
| key | string | required | |
| table_name | string | required | |
| read_capacity | string | 5 | |
| write_capacity | string | 5 | |
| autoscaling_enabled | string | true | |
| target_value | string | 70 | |
| type | string | "table" | |
| capacity | map | {
"max_read": 20,
"max_write": 20,
|
Terraform module to deploy landing zone subscriptions (and much more) in Azure
Terraform Azure Verified Pattern Module for Azure Landing Zone
Terraform Azure Verified Resource Module for Key Vault
Terraform module for building and deploying Next.js apps to AWS. Supports SSR (L