Prep release 2.0.9 (#4007)

* Update implementation coverage

* EC2 - Update instance type offerings

* IAM - update list of managed policies

* Changelog for release 2.0.9

* Instance Type Offerings - fix number of available offerings
This commit is contained in:
Bert Blommers 2021-06-12 13:57:29 +01:00 committed by GitHub
commit cbeeefbec9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 4868 additions and 1449 deletions

View file

@ -59,7 +59,7 @@ def test_describe_instance_type_offering_filter_by_zone():
offerings.should.have.key("InstanceTypeOfferings")
offerings = offerings["InstanceTypeOfferings"]
offerings.should_not.be.empty
offerings.should.have.length_of(353)
offerings.should.have.length_of(391)
assert all([o["LocationType"] == "availability-zone" for o in offerings])
assert all([o["Location"] == "us-east-1c" for o in offerings])
assert any([o["InstanceType"] == "a1.2xlarge" for o in offerings])