@ez4/aws-valkey
v0.43.0
Published
EZ4: Self-managed AWS Valkey cache provider
Readme
EZ4: AWS Valkey
It provides all the components to manage Valkey cache services on AWS.
Getting started
Install
npm install @ez4/aws-valkey -DPermission
Ensure the user performing deployments has the permissions below:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "CacheManagement",
"Effect": "Allow",
"Action": [
"elasticache:DescribeServerlessCaches",
"elasticache:CreateServerlessCache",
"elasticache:DeleteServerlessCache",
"elasticache:AddTagsToResource",
"elasticache:RemoveTagsFromResource"
],
"Resource": ["arn:aws:elasticache:*:{account-id}:serverlesscache:{prefix}-*"]
},
{
"Sid": "CacheVpcEndpointRole",
"Effect": "Allow",
"Action": [
"ec2:CreateVpcEndpoint",
"ec2:DescribeVpcEndpoints",
"ec2:CreateTags"
],
"Resource": ["*"]
},
{
"Sid": "CacheLinkRole",
"Action": "iam:CreateServiceLinkedRole",
"Effect": "Allow",
"Resource": ["arn:aws:iam::*:role/aws-service-role/elasticache.amazonaws.com/AWSServiceRoleForElastiCache"],
"Condition": {
"StringLike": {
"iam:AWSServiceName": "elasticache.amazonaws.com"
}
}
}
]
}License
MIT License
