https://github.com/codemonauts/ebs-backup-lambda
Small lambda function to create snapshots of EBS volumes
https://github.com/codemonauts/ebs-backup-lambda
Last synced: 2 months ago
JSON representation
Small lambda function to create snapshots of EBS volumes
- Host: GitHub
- URL: https://github.com/codemonauts/ebs-backup-lambda
- Owner: codemonauts
- License: mit
- Created: 2018-09-05T12:52:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-09-30T09:53:41.000Z (over 4 years ago)
- Last Synced: 2025-01-18T07:12:03.102Z (about 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EBS Backup Script for Lambda
This lambda function should be called by a CloudWatch event once a day and will iterate over all instances from the
regions defined in `vars.ini`. If they have the tag "Backup" (value is irrelevant and can be empty) a snapshot will be
created from all their EBS volumes.
Most of the code is taken from: https://serverlesscode.com/post/lambda-schedule-ebs-snapshot-backups/