Skip to content

Commit

Permalink
Merge pull request ansible-collections#244 from tremble/issues/241
Browse files Browse the repository at this point in the history
rds_instance: Set no_log=False on force_update_password
  • Loading branch information
felixfontein authored Nov 10, 2020
2 parents d6b7fe9 + a26c8b0 commit 733aec4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/244-rds_instance-no_log.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- rds_instance - set ``no_log=False`` on ``force_update_password`` to clear warning (https://github.com/ansible-collections/community.aws/issues/241).
2 changes: 1 addition & 1 deletion plugins/modules/rds_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,7 @@ def main():
arg_spec = dict(
state=dict(choices=['present', 'absent', 'terminated', 'running', 'started', 'stopped', 'rebooted', 'restarted'], default='present'),
creation_source=dict(choices=['snapshot', 's3', 'instance']),
force_update_password=dict(type='bool', default=False),
force_update_password=dict(type='bool', default=False, no_log=False),
purge_cloudwatch_logs_exports=dict(type='bool', default=True),
purge_tags=dict(type='bool', default=True),
read_replica=dict(type='bool'),
Expand Down

0 comments on commit 733aec4

Please sign in to comment.