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"