dax

devops-made-easy/dax/aws

Terraform Module HCL AWS

A Terraform module to create AWS DynamoDB Accelerator (DAX)

Install
module "dax" {
source = "devops-made-easy/dax/aws"
version = "0.0.2"
}
plain text: /constructs/tfmod-devops-made-easy-dax-aws/install.txt
⭐ Source on GitHub 📦 Registry page
README

terraform-aws-dax Sample way of calling this module `` module "dax" { source = "git@github.com:devops-made-easy/terraform-aws-dax.git" version = "0.0.1" iam_role_arn = "iam_arn" name = "devops-made-easy-dax" node_count = 1 node_type = "dax.t2.small" security_group_ids = [sg-xxxx] subnet_ids = [sub-xxxx] } `` Share the Love Like this project? Please give it a ★ on our GitHub!(it helps us a lot) License Summary This sample code is made available under MIT license. See the LICENSE file.

Inputs (10)
NameTypeDescriptionDefault
iam_role_arnstring(Required) A valid Amazon Resource Name (ARN) that identifies an IAM role. At ru required
security_group_idslist(string)(Required) One or more VPC security groups associated with the cluster required
namestring(Required) Name of Cluster required
subnet_idslist(string)(Required) List of Subnets to use for Cluster Group required
node_typestring(Required) The compute and memory capacity of the nodes required
node_countnumber(Required) The number of nodes in the DAX cluster. If 1 then it will create a si1
maintenance_windowstring(Optional) Specifies the weekly time range for when maintenance on the cluster i"sun:00:00-sun:01:00"
server_side_encryptionbool(Optional) Encrypt at rest options Default = truetrue
query_ttlstring(optional) Query Time To Live in milliseconds Defaults: 300000"300000"
record_ttlstring(optional) Record Time To Live in milliseconds Defaults: 300000"300000"
Outputs (2)
configuration_endpoint — Configuration endpoint for this DAX cluster, consisting of a DNS name and a port number
cluster_address — DNS name of the DAX cluster without the port appended
Resources (3)
aws_dax_clusteraws_dax_parameter_groupaws_dax_subnet_group
Details
FrameworkTerraform Module
LanguageHCL
Version0.0.2
Cloud AWS
★ Stars4
Forks5
Total downloads6.1k
Inputs10
Outputs2
Resources3
LicenseMIT
Namespacedevops-made-easy
Updated