Skip to content

Commit

Permalink
s3_lifecycle - drop deprecated requester_pays parameter (#1165)
Browse files Browse the repository at this point in the history
s3_lifecycle - drop deprecated requester_pays parameter

SUMMARY
The requester_pays did nothing, drop it.
ISSUE TYPE

Feature Pull Request

COMPONENT NAME
s3_lifecycle
ADDITIONAL INFORMATION
See also: ansible/ansible#63989

Reviewed-by: Markus Bergholz <[email protected]>
  • Loading branch information
tremble authored May 26, 2022
1 parent 9460ca1 commit 60cd794
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1165-s3_lifecycle-requester_pays.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
removed_features:
- s3_lifecycle - the unused parameter ``requester_pays`` has been removed (https://github.com/ansible-collections/community.aws/pull/1165).
5 changes: 0 additions & 5 deletions plugins/modules/s3_lifecycle.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,6 @@
I(storage_class)
type: list
elements: dict
requester_pays:
description:
- The I(requester_pays) option does nothing and will be removed after 2022-06-01
type: bool
wait:
description:
- Wait for the configuration to complete before returning.
Expand Down Expand Up @@ -574,7 +570,6 @@ def main():
noncurrent_version_transition_days=dict(type='int'),
noncurrent_version_transitions=dict(type='list', elements='dict'),
prefix=dict(),
requester_pays=dict(type='bool', removed_at_date='2022-06-01', removed_from_collection='community.aws'),
rule_id=dict(),
state=dict(default='present', choices=['present', 'absent']),
status=dict(default='enabled', choices=['enabled', 'disabled']),
Expand Down

0 comments on commit 60cd794

Please sign in to comment.