Skip to content

Commit

Permalink
rds_instance: fix promotion_tier type (ansible-collections#1475)
Browse files Browse the repository at this point in the history
rds_instance: fix promotion_tier type

SUMMARY

Change promotion_tier type to integer

ISSUE TYPE

Bugfix Pull Request

COMPONENT NAME

rds_instance.py
ADDITIONAL INFORMATION

Reviewed-by: Alina Buzachis
Reviewed-by: Mark Chappell
  • Loading branch information
gootdude authored and alinabuzachis committed May 4, 2023
1 parent 41011d3 commit 371a7ea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions changelogs/fragments/1475-rds_instance-promotion-tier.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- rds_instance - fix type of ``promotion_tier`` as passed to the APIs (https://github.com/ansible-collections/amazon.aws/pull/1475).
16 changes: 8 additions & 8 deletions plugins/modules/rds_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
description:
- An integer that specifies the order in which an Aurora Replica is promoted to the primary instance after a failure of
the existing primary instance.
type: str
type: int
publicly_accessible:
description:
- Specifies the accessibility options for the DB instance. A value of true specifies an Internet-facing instance with
Expand Down Expand Up @@ -1349,13 +1349,13 @@ def main():
new_db_instance_identifier=dict(aliases=['new_instance_id', 'new_id']),
option_group_name=dict(),
performance_insights_kms_key_id=dict(),
performance_insights_retention_period=dict(type='int'),
port=dict(type='int'),
preferred_backup_window=dict(aliases=['backup_window']),
preferred_maintenance_window=dict(aliases=['maintenance_window']),
processor_features=dict(type='dict'),
promotion_tier=dict(),
publicly_accessible=dict(type='bool'),
performance_insights_retention_period=dict(type="int"),
port=dict(type="int"),
preferred_backup_window=dict(aliases=["backup_window"]),
preferred_maintenance_window=dict(aliases=["maintenance_window"]),
processor_features=dict(type="dict"),
promotion_tier=dict(type='int'),
publicly_accessible=dict(type="bool"),
restore_time=dict(),
s3_bucket_name=dict(),
s3_ingestion_role_arn=dict(),
Expand Down

0 comments on commit 371a7ea

Please sign in to comment.