ElastiCache ClusterMode Error in terraform-provider-aws 3.26.0
ToC
Just a memo.
With terraform-provider-aws 3.26.0, the following configuration results in an error.
1 | resource "aws_elasticache_replication_group" "cache_store" { |
1 | Error: if automatic_failover_enabled is true, number_cache_clusters must be greater than 1 |
You need to fix it as follows.
1 | resource "aws_elasticache_replication_group" "cache_store" { |
That’s all.
ElastiCache ClusterMode Error in terraform-provider-aws 3.26.0
