We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8acae8b + 15170d0 commit 2599886Copy full SHA for 2599886
CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8
+## Unreleased
9
+
10
+### Fixed
11
12
+- fix wrong number of EBS snapshots
13
14
## [1.5.0] - 2021-04-19
15
16
### Added
aws_quota/check/ebs.py
@@ -10,4 +10,4 @@ class SnapshotCountCheck(QuotaCheck):
@property
def current(self):
- return len(self.boto_session.client('ec2').describe_snapshots()['Snapshots'])
+ return len(self.boto_session.client('ec2').describe_snapshots(OwnerIds=['self'])['Snapshots'])
0 commit comments