Blitzm Cloud - AWS Elastic Cache for Redis
@blitzm/aws-elastic-cache-redis is a pulumi component that simplifies the deployment of Elastic cache for Redis within the same vpc of your cluster in AWS.
Installation
This package can be installed using npm
npm install --save --save-exact @blitzm/aws-elastic-cache-redis
Usage
import { AWSElasticCacheCluster } from '@blitzm/aws-elastic-cache-redis'
const redis = new AWSElasticCacheCluster("redis", {
vpc: cluster.vpc,
nodeType: "cache.m5.large",
engineVersion: "6.0.5",
parameterGroupName: "default.redis6.x"
});
export const redisConnectionUrl = redis.connectionString;
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
License
Blitzm