Skip to content

Commit

Permalink
Formally start the rds deprecation process
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Jul 30, 2021
1 parent c966e27 commit ed818f4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelogs/fragments/663-deprecate-rds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
deprecated_features:
- rds - the boto based ``rds`` module has been deprecated in favour of the boto3 based ``rds_instance`` module.
The ``rds`` module will be removed in release 3.0.0 (https://github.com/ansible-collections/community.aws/pull/663).
7 changes: 7 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,13 @@ plugin_routing:
lambda_facts has been deprecated and will be removed.
The lambda_info module returns the same information, but not as
ansible_facts. See the module documentation for more information.
rds:
deprecation:
removal_version: 3.0.0
warning_text: >-
The rds module is based upon a deprecated version of the AWS SDKs
and is deprecated in favor of the rds_instance and rds_snapshot modules.
Please update your tasks.
rds_instance_facts:
deprecation:
removal_date: 2021-12-01
Expand Down
10 changes: 8 additions & 2 deletions plugins/modules/rds.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@
---
module: rds
version_added: 1.0.0
deprecated:
removed_in: 3.0.0
why: The rds module is based upon a deprecated version of the AWS SDK.
alternative: Use M(rds_instance), M(rds_instance_info), and M(rds_snapshot).
short_description: create, delete, or modify Amazon rds instances, rds snapshots, and related facts
description:
- Creates, deletes, or modifies rds resources.
- When creating an instance it can be either a new instance or a read-only replica of an existing instance.
- This module has a dependency on python-boto >= 2.5 and will soon be deprecated.
- The 'promote' command requires boto >= 2.18.0. Certain features such as tags rely on boto.rds2 (boto >= 2.26.0).
- Please use boto3 based M(community.aws.rds_instance) instead.
- Please use the boto3 based M(community.aws.rds_instance) instead.
options:
command:
description:
Expand Down Expand Up @@ -1354,6 +1357,9 @@ def main():
check_boto3=False,
)

module.deprecate("The 'rds' module has been deprecated and replaced by the 'rds_instance' module'",
version='3.0.0', collection_name='community.aws')

if not HAS_BOTO:
module.fail_json(msg='boto required for this module')

Expand Down

0 comments on commit ed818f4

Please sign in to comment.