ElastiCache for Redis / Valkey
A cluster-mode-disabled ElastiCache Redis/Valkey cache with encryption at rest and in transit both on, no public exposure, and the subnet group and security group created for you.
Part of: AWS Production Landing Zone
Verification
Live-testedReally deployed to a cloud sandbox, verified against its outputs and assertions, then destroyed - with the teardown confirmed.
Conformance
- Static validation (fmt · validate · tflint)
- Security scan clean (Checkov)
- Plan test superseded by live test
Provenance
- SHA-256 checksum
- Cosign signature
Functional
- Live-tested - applied, verified, destroyed
Last verified 2026-06-30 · how we verify
Verify this download
cosign · sha-256Don't take our word for it. Every release is signed with cosign - check the bytes against our pinned public key before you trust them.
# 1. Our pinned public key - fetch once, trust out-of-band
curl -O https://www.iac-bazaar.com/cosign.pub
# 2. This module's Sigstore bundle
curl -o aws-elasticache-redis-1.0.0.sigstore.json \
https://www.iac-bazaar.com/api/artifacts/aws-elasticache-redis/signature
# 3. Verify the tarball you downloaded
cosign verify-blob \
--key cosign.pub \
--bundle aws-elasticache-redis-1.0.0.sigstore.json \
aws-elasticache-redis-1.0.0.tar.gz
# → Verified OK
# 4. (optional) confirm the checksum too
echo "e8d988b12b946eecf5bd97ee73773915adce54392cc21c995b5e85054c382ec9 aws-elasticache-redis-1.0.0.tar.gz" | sha256sum -cUse it from the registry
terraform · opentofumodule "elasticache_redis" {
source = "www.iac-bazaar.com/iac-bazaar/aws-elasticache-redis/aws"
version = "1.0.0"
}Paid module — needs a purchase (or a subscription that covers it) plus a registry token from /account/tokens. Full setup: registry docs.
Inputs & outputs
Create a free account to read this module's contract
The declared contract — every input name, type, default and description, plus every output — is shown to signed-in accounts, not to anonymous visitors.
A free account sees the contract of every Free module. This one is Premium, so its contract unlocks when you buy it.
Documentation
aws-elasticache-redis
Amazon ElastiCache for Redis / Valkey, cluster mode disabled (a single
primary with optional read replicas). Works with Terraform and OpenTofu
(>= 1.6), AWS provider >= 6.0, < 7.0. Secure by default and self-contained:
encryption at rest and in transit are both on, the cache is never publicly
reachable, and the networking pieces (subnet group + security group) are created
for you — falling back to the account's default VPC so a minimal cache applies
with just a name.
Secure defaults:
- Encryption at rest on (
at_rest_encryption_enabled = true); use a customer-managed key viakms_key_id, otherwise the AWS-managed ElastiCache key - Encryption in transit (TLS) on (
transit_encryption_enabled = true); optionalauth_tokenadds Redis AUTH on top (the token is never an output) - No public exposure — access is via a module-created security group that
opens the cache port only to
allowed_cidrs/allowed_security_group_ids(no ingress at all by default) - Automatic minor version upgrades on, to pick up security patches
- Footgun guards (plan-time preconditions): Multi-AZ implies automatic failover,
automatic failover implies
num_cache_clusters >= 2,auth_tokenimplies TLS,kms_key_idimplies at-rest encryption
Cost note: the default cache.t4g.micro single node is the cheapest option
(~$0.016/hr). HA (replicas + automatic_failover_enabled + multi_az_enabled)
is off by default — opt in for production.
Security notes
- Clients must speak TLS while
transit_encryption_enabledis on. Add anauth_tokenfor password auth; the token is supplied viaTF_VAR_auth_tokenor a secrets manager and is never exposed as an output. - Keep
allowed_cidrs/allowed_security_group_idsas tight as possible — prefer granting an application security group over a CIDR range. - For real deployments pin
subnet_idsto private subnets instead of relying on the default-VPC fallback.
Requirements
- Terraform or OpenTofu
>= 1.6 hashicorp/aws>= 6.0, < 7.0
License
Commercial — IaC Bazaar EULA. © IaC Bazaar. Original work (not derived from a third-party module).
Usage code & full reference unlock after purchase
The complete copy-paste usage, the full input/output reference, and operational notes ship with your licence - shown here and bundled in the download.
- Usage
- Inputs
- Outputs
Related modules
Aurora Cluster (Serverless v2 ready)
Aurora PostgreSQL/MySQL cluster with instances, parameter groups, Serverless v2 scaling, and enhanced monitoring.
DynamoDB Table
DynamoDB table with GSIs/LSIs, TTL, streams, autoscaling or on-demand, and point-in-time recovery.
RDS Instance (PostgreSQL/MySQL)
Single-instance or Multi-AZ RDS with subnet/parameter/option groups, backups, and monitoring wired correctly.
Redshift Cluster (encrypted, private)
A production-ready single-node Redshift cluster with encryption always on, never publicly accessible, a parameter group enforcing require_ssl, and a generated admin password stored in Secrets Manager.