@blitzm/aws-elastic-cache-redis
v0.2.0
Published
@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.
Downloads
5
Keywords
Readme
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",
// check this potential issue here:
// https://github.com/hashicorp/terraform-provider-aws/issues/15625
engineVersion: "6.0.5",
parameterGroupName: "default.redis6.x"
});
// the connection string will be available
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.