Skip to content

Commit

Permalink
Merge pull request #534 from robpickerill/ebs-quotas
Browse files Browse the repository at this point in the history
update service quota names for ebs
  • Loading branch information
jantman committed Jul 8, 2021
2 parents 8218473 + fa7b063 commit ce37447
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions awslimitchecker/services/ebs.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='io1',
quotas_name='Provisioned IOPS (io1)'
quotas_name='IOPS for Provisioned IOPS SSD (io1) volumes'
)
limits['Provisioned IOPS SSD (io1) storage (GiB)'] = AwsLimit(
'Provisioned IOPS SSD (io1) storage (GiB)',
Expand All @@ -233,7 +233,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='io1',
quotas_name='Provisioned IOPS (SSD) volume storage',
quotas_name='Storage for Provisioned IOPS SSD (io1) volumes',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -245,7 +245,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='io2',
quotas_name='Provisioned IOPS (io2)'
quotas_name='IOPS for Provisioned IOPS SSD (io2) volumes'
)
limits['Provisioned IOPS SSD (io2) storage (GiB)'] = AwsLimit(
'Provisioned IOPS SSD (io2) storage (GiB)',
Expand All @@ -255,7 +255,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='io2',
quotas_name='Provisioned IOPS SSD (io2) volume storage',
quotas_name='Storage for Provisioned IOPS SSD (io2) volumes',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand Down Expand Up @@ -294,7 +294,7 @@ def _get_limits_ebs(self):
limit_type='AWS::EC2::Volume',
limit_subtype='standard',
ta_limit_name='Magnetic (standard) volume storage (GiB)',
quotas_name='Magnetic volume storage',
quotas_name='Storage for Magnetic (standard) volumes',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -306,7 +306,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='st1',
quotas_name='Max Throughput Optimized HDD (ST1) Storage',
quotas_name='Storage for Throughput Optimized HDD (st1) volumes',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -318,7 +318,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='sc1',
quotas_name='Max Cold HDD (SC1) Storage',
quotas_name='Storage for Cold HDD (sc1) volumes',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand Down

0 comments on commit ce37447

Please sign in to comment.