Skip to content

Commit

Permalink
[3.0.0] Bump minimal botocore version to 1.19.0 (ansible-collections#809
Browse files Browse the repository at this point in the history
)

[3.0.0] Bump minimal botocore version to 1.19.0

SUMMARY
In preparation for release 3.0.0, bump the minimal botocore version
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
README.md
plugins/modules/aws_s3_bucket_info.py
requirements.txt
tests/integration/constraints.txt
tests/integration/targets/setup_botocore_pip/defaults/main.yml
tests/unit/constraints.txt
ADDITIONAL INFORMATION
Depends-On: ansible-collections#574

Reviewed-by: None <None>
  • Loading branch information
tremble authored and abikouo committed Sep 18, 2023
1 parent 1f93316 commit c54d211
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aws_s3_bucket_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@
bucket_ownership_controls:
description:
- Retrive S3 ownership controls.
- Access to bucket ownership controls requires botocore>=1.18.11.
type: bool
default: False
bucket_website:
Expand Down Expand Up @@ -595,9 +594,6 @@ def main():
module.deprecate("The 'aws_s3_bucket_facts' module has been renamed to 'aws_s3_bucket_info', "
"and the renamed one no longer returns ansible_facts", date='2021-12-01', collection_name='community.aws')

if module.params.get("bucket_ownership_controls"):
module.require_botocore_at_least('1.18.11', reason='to retreive bucket ownership controls')

# Get parameters
name = module.params.get("name")
name_filter = module.params.get("name_filter")
Expand Down

0 comments on commit c54d211

Please sign in to comment.