sparse-spring-91820
06/29/2022, 3:52 PMRedis Elasticeche instance
?
https://www.pulumi.com/registry/packages/aws/api-docs/elasticache/cluster/ I canβt find options to enable encryption and backup for aws.elasticache.Cluster
const cluster = new aws.elasticache.Cluster('redis', {
clusterId: 'redis-test',
engine: 'redis',
engineVersion: '6.x',
nodeType: 'cache.t3.small',
numCacheNodes: 1,
parameterGroupName: 'default.redis6.x',
port: 6379,
maintenanceWindow: 'Mon:07:00-Mon:08:00',
subnetGroupName: subnet.id,
securityGroupIds: [securityGroup.id]
});
billowy-army-68599
sparse-spring-91820
06/29/2022, 4:08 PMReplicationGroup
and not Cluster
?billowy-army-68599
sparse-spring-91820
06/29/2022, 4:10 PMbillowy-army-68599