bash script for aurora psql db backup snapshots and export to S3 bucket

0

To generate a bash script to automate the process of creating snapshots of aroura psql database backup and export the same to s3 bucket with aws iam credentials cron job for every 3 hours and hold snapshots for 30 days

1 回答
0

You can use EventBridge to schedule a lambda, then use boto3 to take the snapshot directly to S3, like this example to star/stop the instance, just change the stop_db_cluster for create_db_snapshot, like this example:

rds_client.create_db_snapshot(DBSnapshotIdentifier=snapshot_id, DBInstanceIdentifier=instance_id)

Then create a S3 lifecycle policy to expire the files.

AWS
Jorge
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则