diff --git a/awslimitchecker/services/ecs.py b/awslimitchecker/services/ecs.py index aa7fef86..90fb2d14 100644 --- a/awslimitchecker/services/ecs.py +++ b/awslimitchecker/services/ecs.py @@ -208,7 +208,9 @@ def get_limits(self): self.warning_threshold, self.critical_threshold, limit_type='AWS::ECS::TaskDefinition', - limit_subtype='Fargate' + limit_subtype='Fargate', + quotas_name='Fargate On-Demand resource count', + quotas_service_code='fargate' ) limits['Fargate Spot resource count'] = AwsLimit( 'Fargate Spot resource count', @@ -217,7 +219,9 @@ def get_limits(self): self.warning_threshold, self.critical_threshold, limit_type='AWS::ECS::TaskDefinition', - limit_subtype='FargateSpot' + limit_subtype='FargateSpot', + quotas_name='Fargate Spot resource count', + quotas_service_code='fargate' ) self.limits = limits return limits