Skip to content

Commit

Permalink
Merge pull request #491 from sebasrp/issues/488
Browse files Browse the repository at this point in the history
issue #488 - Update ElasticCache default limits
  • Loading branch information
jantman committed Dec 7, 2020
2 parents 21b73e8 + c51d822 commit 9322cce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions awslimitchecker/services/elasticache.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def get_limits(self):
limits['Nodes'] = AwsLimit(
'Nodes',
self,
100,
300,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ElastiCache::CacheNode',
Expand All @@ -186,7 +186,7 @@ def get_limits(self):
limits['Subnet Groups'] = AwsLimit(
'Subnet Groups',
self,
50,
150,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ElastiCache::SubnetGroup',
Expand All @@ -204,7 +204,7 @@ def get_limits(self):
limits['Parameter Groups'] = AwsLimit(
'Parameter Groups',
self,
20,
150,
self.warning_threshold,
self.critical_threshold,
limit_type='AWS::ElastiCache::ParameterGroup',
Expand Down

0 comments on commit 9322cce

Please sign in to comment.