Download the PHP package tuscanicz/php-aws-snapshots without Composer
On this page you can find all versions of the php package tuscanicz/php-aws-snapshots. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tuscanicz/php-aws-snapshots
More information about tuscanicz/php-aws-snapshots
Files in tuscanicz/php-aws-snapshots
Package php-aws-snapshots
Short Description A simple library that manages AWS backups from PHP.
License MIT
Homepage https://github.com/tuscanicz/php-aws-snapshots
Informations about the package php-aws-snapshots
Create automatic AWS EC2 snapshots with limits on the total number of snapshots created and the interval which the snapshots are created.
For example, you could create a snapshot every day and only keep the last 7 for a running week's worth of snapshots. Or create a snapshot once a week and only keep the last 4 so you would have a running month's worth of snapshots.
Requirements
- AWS CLI
- AWS IAM snapshot permissions (example policy)
- PHP 5.5+
- Access to crontab (or some other job scheduler)
AWS CLI installation
Setup
This assumes you've already installed and configured AWS CLI and added the correct IAM permissions within your AWS console.
1. Create a PHP script to use the library
Use composer to autoload all the necessary classes.
Setup AWS CLI installation directory (using the value from which aws
) and
configure your volumes.
Finally wire the services and test run your cli task. You can also change a description prefix that is used by this library to pick snapshots from the server. This is done via the second argument of Snapshots::run()
Example wiring in Symfony services.yml:
Volume Configuration
There are two types of volume configurations.
Both of them maintain a certain number of snapshots (snapshot count limit) of a volume with specified description. The description is used by this library to select snapshots. When you create a manual snapshot of a same volume, it will be ignored.
Interval Backups
You can schedule only one backup within a specified interval by using:
where the arguments are:
Name | Type | Description |
---|---|---|
volume id | string | AWS EBS volume ID |
snapshot count limit | integer | total number of snapshots to store for a volume |
interval | string | how often to create snapshot (30 minute, 1 day, 7 day, 2 week - full list below) |
description | string | snapshot description that shows in the Snapshot section within AWS console and is used to filter manual backups |
Regular Backups
You can also backup a volume every time you run the PHP task by using:
where the arguments are:
Name | Type | Description |
---|---|---|
volume id | string | AWS EBS volume ID |
snapshot count limit | integer | total number of snapshots to store for a volume |
description | string | snapshot description that shows in the Snapshot section within AWS console and is used to filter manual backups |
Interval Values
The interval format is number type
(e.g. 30 minute
):
- a number is integer
- a type is one of following units:
- hour
- day
- week
- month
- year
2. Add a cron job
The cron job schedule will depend on your configuration. You should run the cron command in a period that is as long as the smallest interval of your volume backups.
In the example you have to run the CRON task at least once a day. It will create snapshot of:
- every day at 3:00 am,
- every week on a day you started it for the first time at 3:00 am
- every time you run the task (if you run it 3× a day it will create 3 snapshots)
Example IAM Policy
This is a minimal policy that includes ONLY the permissions needed to work. You could also limit the "Resources" option to restrict it even further.
Questions, issues or suggestions
Please use the issues section for any questions or issues you have. Also, suggestions, pull request or any help is most welcome!