All Projects → azavea → terraform-aws-redis-elasticache

azavea / terraform-aws-redis-elasticache

Licence: Apache-2.0 license
A Terraform module to create an Amazon Web Services (AWS) Redis ElastiCache cluster.

Programming Languages

HCL
1544 projects
shell
77523 projects

Projects that are alternatives of or similar to terraform-aws-redis-elasticache

terraform-aws-lambda-function
A Terraform module for deploying and managing Lambda functions on Amazon Web Services (AWS). https://aws.amazon.com/lambda/
Stars: ✭ 37 (+12.12%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-elasticache-redis
A Terraform module to create an AWS Redis ElastiCache cluster.
Stars: ✭ 29 (-12.12%)
Mutual labels:  elasticache, terraform-modules
terraform-aws-cognito-user-pool
A Terraform module to create and manage Cognito User Pools (Simple and Secure User Sign-Up, Sign-In, and Access Control) on Amazon Web Services (AWS). https://aws.amazon.com/cognito
Stars: ✭ 46 (+39.39%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-acm-certificate
A Terraform module to create an Amazon Certificate Manager (ACM) certificate with Route 53 DNS validation.
Stars: ✭ 43 (+30.3%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-ecs-web-service
A Terraform module to create an Amazon Web Services (AWS) EC2 Container Service (ECS) service associated with an Application Load Balancer (ALB).
Stars: ✭ 26 (-21.21%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-s3-bucket
A Terraform module to create a Simple Storage Service (S3) Bucket on Amazon Web Services (AWS). https://aws.amazon.com/s3/
Stars: ✭ 47 (+42.42%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-iam-user
A Terraform module to create and manage Identity and Access Management (IAM) Users on Amazon Web Services (AWS). https://aws.amazon.com/iam
Stars: ✭ 17 (-48.48%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-route53
A Terraform module to create a Route53 Domain Name System (DNS) on Amazon Web Services (AWS). https://aws.amazon.com/route53/
Stars: ✭ 39 (+18.18%)
Mutual labels:  amazon-web-services, terraform-modules
terraform-aws-vpc
A Terraform module to create an Amazon Web Services (AWS) Virtual Private Cloud (VPC).
Stars: ✭ 24 (-27.27%)
Mutual labels:  amazon-web-services, terraform-modules
db-sharding
Oracle Sharded database deployment automation and tools for use in client applications.
Stars: ✭ 30 (-9.09%)
Mutual labels:  terraform-modules
aws-fis-templates-cdk
Collection of AWS Fault Injection Simulator (FIS) experiment templates deploy-able via the AWS CDK
Stars: ✭ 43 (+30.3%)
Mutual labels:  amazon-web-services
terraform-aws-acm-request-certificate
Terraform module to request an ACM certificate for a domain name and create a CNAME record in the DNS zone to complete certificate validation
Stars: ✭ 83 (+151.52%)
Mutual labels:  terraform-modules
terraform-modules
Reusable Terraform modules
Stars: ✭ 12 (-63.64%)
Mutual labels:  terraform-modules
terraform-aws-minikube
Terraform module for single node Kubernetes instance bootstrapped using kubeadm
Stars: ✭ 58 (+75.76%)
Mutual labels:  terraform-modules
terraform-aws-datadog-integration
Terraform module to configure Datadog AWS integration
Stars: ✭ 26 (-21.21%)
Mutual labels:  terraform-modules
Amazon-SP-API-CSharp
.Net C# library for the new Amazon Selling Partner API
Stars: ✭ 95 (+187.88%)
Mutual labels:  amazon-web-services
Data-pipeline-project
Data pipeline project
Stars: ✭ 18 (-45.45%)
Mutual labels:  amazon-web-services
terraform-modules
Terraform Modules by Peak
Stars: ✭ 16 (-51.52%)
Mutual labels:  terraform-modules
terraform-aws-sonarqube
SonarQube Terraform Module for AWS
Stars: ✭ 28 (-15.15%)
Mutual labels:  amazon-web-services
terraform-aws-enforce-mfa
A terraform module to enforce MFA for AWS groups and users
Stars: ✭ 24 (-27.27%)
Mutual labels:  terraform-modules

terraform-aws-redis-elasticache

CircleCI

A Terraform module to create an Amazon Web Services (AWS) Redis ElastiCache cluster.

Usage

resource "aws_sns_topic" "global" {
  ...
}

resource "aws_elasticache_subnet_group" "redis" {
  ...
}

resource "aws_elasticache_parameter_group" "redis" {
  ...
}

module "cache" {
  source = "github.com/azavea/terraform-aws-redis-elasticache"

  vpc_id                     = "vpc-20f74844"
  cache_identifier           = "cache"
  automatic_failover_enabled = "false"
  desired_clusters           = "1"
  instance_type              = "cache.t2.micro"
  engine_version             = "3.2.4"
  parameter_group            = "${aws_elasticache_parameter_group.redis.name}"
  subnet_group               = "${aws_elasticache_subnet_group.redis.name}"
  maintenance_window         = "sun:02:30-sun:03:30"
  notification_topic_arn     = "${aws_sns_topic.global.arn}"

  alarm_cpu_threshold    = "75"
  alarm_memory_threshold = "10000000"
  alarm_actions          = ["${aws_sns_topic.global.arn}"]

  project     = "Unknown"
  environment = "Unknown"
}

Variables

  • vpc_id - ID of VPC meant to house the cache
  • project - Name of the project making use of the cluster (default: Unknown)
  • environment - Name of environment the cluster is targeted for (default: Unknown)
  • cache_identifier - Name used as ElastiCache cluster ID
  • automatic_failover_enabled - Flag to determine if automatic failover should be enabled
  • desired_clusters - Number of cache clusters in replication group
  • instance_type - Instance type for cache instance (default: cache.t2.micro)
  • engine_version - Cache engine version (default: 3.2.4)
  • parameter_group - Cache parameter group name (default: redis3.2)
  • subnet_group - Cache subnet group name
  • maintenance_window - Time window to reserve for maintenance
  • notification_topic_arn - ARN to notify when cache events occur
  • alarm_cpu_threshold - CPU alarm threshold as a percentage (default: 75)
  • alarm_memory_threshold - Free memory alarm threshold in bytes (default: 10000000)
  • alarm_actions - ARN to be notified via CloudWatch when alarm thresholds are triggered

Outputs

  • id - The replication group ID
  • cache_security_group_id - Security group ID of the cache cluster
  • port - Port of replication group leader
  • endpoint - Public DNS name of replication group leader
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].