diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/consts/service_consts.py b/monkey/monkey_island/cc/services/zero_trust/scoutsuite/consts/service_consts.py
index ac5209b45..a31c83d3e 100644
--- a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/consts/service_consts.py
+++ b/monkey/monkey_island/cc/services/zero_trust/scoutsuite/consts/service_consts.py
@@ -16,7 +16,7 @@ class SERVICE_TYPES(Enum):
     EFS = 'efs'
     ELASTICACHE = 'elasticache'
     ELB = 'elb'
-    ELBv2 = 'elbv2'
+    ELB_V2 = 'elbv2'
     EMR = 'emr'
     IAM = 'iam'
     KMS = 'kms'
diff --git a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/rule_path_building/rule_path_creators/elbv2_rule_path_creator.py b/monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/rule_path_building/rule_path_creators/elbv2_rule_path_creator.py
index b268a5a58..2472bf076 100644
--- a/monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/rule_path_building/rule_path_creators/elbv2_rule_path_creator.py
+++ b/monkey/monkey_island/cc/services/zero_trust/scoutsuite/data_parsing/rule_path_building/rule_path_creators/elbv2_rule_path_creator.py
@@ -6,5 +6,5 @@ from monkey_island.cc.services.zero_trust.scoutsuite.data_parsing.rule_path_buil
 
 class ELBv2RulePathCreator(AbstractRulePathCreator):
 
-    service_type = SERVICE_TYPES.ELBv2
+    service_type = SERVICE_TYPES.ELB_V2
     supported_rules = ELBv2Rules