diff --git a/changelogs/fragments/244-rds_instance-no_log.yml b/changelogs/fragments/244-rds_instance-no_log.yml new file mode 100644 index 00000000000..3acb6f863fc --- /dev/null +++ b/changelogs/fragments/244-rds_instance-no_log.yml @@ -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). diff --git a/plugins/modules/rds_instance.py b/plugins/modules/rds_instance.py index ea2e8ba11b1..3aa9c7f67dc 100644 --- a/plugins/modules/rds_instance.py +++ b/plugins/modules/rds_instance.py @@ -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'),