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

ebs_snapshot_count seems high #2

Closed
cariaso opened this issue Feb 25, 2021 · 2 comments · Fixed by #16
Closed

ebs_snapshot_count seems high #2

cariaso opened this issue Feb 25, 2021 · 2 comments · Fixed by #16

Comments

@cariaso
Copy link

cariaso commented Feb 25, 2021

I'm seeing
EBS Snapshots per region [default/eu-west-1]: 25780/100000 ✓
for an account with only a handful of actual snapshots.
Perhaps change

return len(self.boto_session.client('ec2').describe_snapshots()['Snapshots'])

To

return len(self.boto_session.client('ec2').describe_snapshots(OwnerIds=["self"])['Snapshots'])
@brennerm
Copy link
Owner

Hey @cariaso, thanks for reporting. I was also wondering about this high number but I couldn't find an info whether this limit only applies to self owned snapshots. It's quite likely but if not it would also explain why the limit is so high.

Let me contact AWS support and try to clarify that.

@brennerm
Copy link
Owner

Verified that only self owned snaphots count towards this quota. Fixed with #16.

wadells referenced this issue in gravitational/aws-quota-checker Sep 14, 2023
…-1.x

Update pypa/gh-action-pypi-publish action to v1.8.10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants