Skip to content

Commit

Permalink
Merge pull request #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 dea19c4 + 13c1e3d commit fc7c6fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 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 fc7c6fc

Please sign in to comment.