@cfn-modules/elasticache-serverless
v0.2.0
Published
ElastiCache redis cluster with secure firewall configuration, encryption, multi AZ, backup enabled, and alerting
Downloads
14
Readme
cfn-modules: ElastiCache Serverless
ElastiCache Serverless with secure firewall configuration, encryption, backup enabled, and alerting.
Install
Install Node.js and npm first!
npm i @cfn-modules/elasticache-serverless
Usage
---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'cfn-modules example'
Resources:
Cache:
Type: 'AWS::CloudFormation::Stack'
Properties:
Parameters:
VpcModule: !GetAtt 'Vpc.Outputs.StackName' # required
ClientSgModule: !GetAtt 'ClientSg.Outputs.StackName' # required
AlertingModule: '' # optional
BastionModule: '' # optional
KmsKeyModule: '' # optional
CacheName: 'demo' # required
SnapshotRetentionLimit: '35' # optional
MaxDataStorageLimit: 10 # optional
MaxECPUPerSecondLimit: 1000 # optional
TemplateURL: './node_modules/@cfn-modules/elasticache-serverless/module.yml'
Examples
none
Related modules
none
Parameters
Limitations
- All connections to database require TLS.
- Valkey/Redis runs in cluster mode, clients/apps need to support that.