Typo fix in service_consts.py

This commit is contained in:
VakarisZ 2021-01-14 12:05:13 +02:00
parent cd9d2904c5
commit a818025f63
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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