From 21ac395d4c3c4a58fed2d06fcd7424ad2a366e0f Mon Sep 17 00:00:00 2001 From: Hugo Pereira Brito <101209179+HugoPBrito@users.noreply.github.com> Date: Thu, 19 Sep 2024 00:29:43 +0200 Subject: [PATCH] fix(elasticache): get correct automatic failover attribute (#5084) Co-authored-by: Sergio Garcia <38561120+sergargar@users.noreply.github.com> --- .../providers/aws/services/elasticache/elasticache_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prowler/providers/aws/services/elasticache/elasticache_service.py b/prowler/providers/aws/services/elasticache/elasticache_service.py index 81aab80980..23a46b5559 100644 --- a/prowler/providers/aws/services/elasticache/elasticache_service.py +++ b/prowler/providers/aws/services/elasticache/elasticache_service.py @@ -107,7 +107,7 @@ class ElastiCache(AWSService): "AutoMinorVersionUpgrade", False ), automatic_failover=repl_group.get( - "AutomaticFailoverStatus", "disabled" + "AutomaticFailover", "disabled" ), ) except Exception as error: