Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue #567 - update EBS quota names #568

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions awslimitchecker/services/ebs.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def _get_limits_ebs(self):
self.critical_threshold,
limit_type='AWS::EC2::Volume',
limit_subtype='io1',
quotas_name='Storage for Provisioned IOPS SSD (io1) volumes',
quotas_name='Storage for Provisioned IOPS SSD (io1) volumes, in TiB', # noqa
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_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='Storage for Provisioned IOPS SSD (io2) volumes',
quotas_name='Storage for Provisioned IOPS SSD (io2) volumes, in TiB', # noqa
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -268,7 +268,7 @@ def _get_limits_ebs(self):
limit_type='AWS::EC2::Volume',
limit_subtype='gp2',
ta_limit_name='General Purpose SSD (gp2) volume storage (GiB)',
quotas_name='Storage for General Purpose SSD (gp2) volumes',
quotas_name='Storage for General Purpose SSD (gp2) volumes, in TiB',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -281,7 +281,7 @@ def _get_limits_ebs(self):
limit_type='AWS::EC2::Volume',
limit_subtype='gp3',
ta_limit_name='General Purpose SSD (gp3) volume storage (GiB)',
quotas_name='Storage for General Purpose SSD (gp3) volumes',
quotas_name='Storage for General Purpose SSD (gp3) volumes, in TiB',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand All @@ -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='Storage for Magnetic (standard) volumes',
quotas_name='Storage for Magnetic (standard) volumes, in TiB',
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='Storage for Throughput Optimized HDD (st1) volumes',
quotas_name='Storage for Throughput Optimized HDD (st1) volumes, in TiB', # noqa
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='Storage for Cold HDD (sc1) volumes',
quotas_name='Storage for Cold HDD (sc1) volumes, in TiB',
quotas_unit='GiB',
quotas_unit_converter=convert_TiB_to_GiB
)
Expand Down