Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble committed Jun 25, 2024
1 parent a44e398 commit 87e8ef8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/2141-rds-t3-m4.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
trivial:
- rds_instance - remove references to deprecated ``m4`` and ``t2`` RDS instance types (https://github.com/ansible-collections/amazon.aws/pull/2141).
8 changes: 4 additions & 4 deletions plugins/modules/rds_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
type: str
db_instance_class:
description:
- The compute and memory capacity of the DB instance, for example db.t2.micro.
- The compute and memory capacity of the DB instance, for example V(db.t3.micro).
aliases:
- class
- instance_type
Expand Down Expand Up @@ -463,7 +463,7 @@
amazon.aws.rds_instance:
engine: aurora
db_instance_identifier: ansible-test-aurora-db-instance
instance_type: db.t2.small
instance_type: db.t3.small
password: "{{ password }}"
username: "{{ username }}"
cluster_id: ansible-test-cluster # This cluster must exist - see rds_cluster to manage it
Expand All @@ -474,7 +474,7 @@
state: present
engine: mariadb
storage_encrypted: true
db_instance_class: db.t2.medium
db_instance_class: db.t3.medium
username: "{{ username }}"
password: "{{ password }}"
allocated_storage: "{{ allocated_storage }}"
Expand Down Expand Up @@ -602,7 +602,7 @@
description: The name of the compute and memory capacity class of the DB instance.
returned: always
type: str
sample: db.m4.large
sample: db.m5.large
db_instance_identifier:
description: The identifier of the DB instance
returned: always
Expand Down
2 changes: 1 addition & 1 deletion plugins/modules/rds_instance_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
description: Instance class of the database instance
returned: always
type: str
sample: db.t2.small
sample: db.t3.small
db_instance_identifier:
description: Database instance identifier
returned: always
Expand Down

0 comments on commit 87e8ef8

Please sign in to comment.