Skip to content

Commit

Permalink
rds_instance: Set no_log=False on force_update_password
Browse files Browse the repository at this point in the history
  • Loading branch information
tremble authored and goneri committed Sep 21, 2022
1 parent 5de326a commit 8e697bb
Showing 1 changed file with 1 addition and 1 deletion.
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 8e697bb

Please sign in to comment.