From 440f8ee65762dd43b84add119c01aa3729a08ba3 Mon Sep 17 00:00:00 2001 From: Mehdi Karimian Date: Tue, 25 Jul 2023 19:21:20 +0330 Subject: [PATCH] fix --- examples/redis-basic/main.tf | 2 +- examples/redis-clustered-mode/main.tf | 2 +- examples/redis-replication-group/main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/redis-basic/main.tf b/examples/redis-basic/main.tf index f2fea16..4782add 100755 --- a/examples/redis-basic/main.tf +++ b/examples/redis-basic/main.tf @@ -22,7 +22,7 @@ module "redis" { namespace = "redis-basic" cluster_name = "redis-basic-example" source = "Mehdikarimian/elasticache-redis-cluster/aws" - version = "1.1.0" + version = "1.2.0" vpc_id = module.vpc.vpc_id subnet_ids = module.vpc.private_subnets node_type = "cache.t3.small" diff --git a/examples/redis-clustered-mode/main.tf b/examples/redis-clustered-mode/main.tf index 980fe36..cf945e9 100755 --- a/examples/redis-clustered-mode/main.tf +++ b/examples/redis-clustered-mode/main.tf @@ -22,7 +22,7 @@ module "redis" { namespace = "redis-cluster-mode" cluster_name = "redis-cluster-mode-example" source = "Mehdikarimian/elasticache-redis-cluster/aws" - version = "1.1.0" + version = "1.2.0" vpc_id = module.vpc.vpc_id subnet_ids = module.vpc.private_subnets node_type = "cache.t3.small" diff --git a/examples/redis-replication-group/main.tf b/examples/redis-replication-group/main.tf index ce9c396..7318dcd 100755 --- a/examples/redis-replication-group/main.tf +++ b/examples/redis-replication-group/main.tf @@ -22,7 +22,7 @@ module "redis" { namespace = "redis-replication" cluster_name = "redis-replication-example" source = "Mehdikarimian/elasticache-redis-cluster/aws" - version = "1.1.0" + version = "1.2.0" vpc_id = module.vpc.vpc_id subnet_ids = module.vpc.private_subnets node_type = "cache.t3.small"