Skip to content

Commit

Permalink
Merge pull request #528 from arturpriz/develop
Browse files Browse the repository at this point in the history
update ECS limits
  • Loading branch information
jantman committed Apr 20, 2021
2 parents 783dfaa + f47a614 commit ef22d43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions awslimitchecker/services/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,15 +187,15 @@ def get_limits(self):
limits['Services per Cluster'] = AwsLimit(
'Services per Cluster',
self,
2000,
5000,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ECS::Service'
)
limits['Tasks per service'] = AwsLimit(
'Tasks per service',
self,
2000,
5000,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ECS::TaskDefinition',
Expand All @@ -204,7 +204,7 @@ def get_limits(self):
limits['Fargate On-Demand resource count'] = AwsLimit(
'Fargate On-Demand resource count',
self,
500,
1000,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ECS::TaskDefinition',
Expand All @@ -213,7 +213,7 @@ def get_limits(self):
limits['Fargate Spot resource count'] = AwsLimit(
'Fargate Spot resource count',
self,
500,
1000,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ECS::TaskDefinition',
Expand Down

0 comments on commit ef22d43

Please sign in to comment.