Provide correct kwargs to rds2 connection when making a final snapshot

pull/18777/head
Flyte 10 years ago committed by Matt Clay
parent 387fe5b0e7
commit 2f46364921

@ -715,6 +715,9 @@ def delete_db_instance_or_snapshot(module, conn):
if instance_name:
if snapshot:
params["skip_final_snapshot"] = False
if has_rds2:
params["final_db_snapshot_identifier"] = snapshot
else:
params["final_snapshot_id"] = snapshot
else:
params["skip_final_snapshot"] = True

Loading…
Cancel
Save