0.2.0 • Published 9 months ago

@cfn-modules/elasticache-serverless v0.2.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
9 months ago

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.