This is based of https://gist.github.com/Serhioromano/9738785 gist but my fork gist give more information of snapshot description of all machines than you want make snapshot it.
You need php-cli and php-curl installed on your system for execute all.
It looks like a very required and trivial task. But there is not outof the box solution in AWS. But fortunately it is easy to setup with few steps.
-
Opent SSH connection to your server.
-
Navigate to folder
$ cd /usr/local/
-
Clon this gist
$ git clone https://gist.github.com/bd4e889af66e6d31c13c.git ec2
-
Go to that folder
$ cd ec2
-
Make
backup.php
executable$ chmod +x backup.php
-
Open releases of the AWS PHP SDK github project and copy URL of
aws.zip
button. Now download it into your server.$ wget https://github.com/aws/aws-sdk-php/releases/download/2.7.0/aws.zip
-
Unzip this file into
aws
directory.$ unzip aws.zip -d aws
-
Edit
backup.php
php file and set all settings in line5-12
$dryrun = FALSE; $interval = '24 hours'; $keep_for = '10 Days'; $volumes = array('vol-********'); $api_key = '*********************'; $api_secret = '****************************************'; $ec2_region = 'us-east-1'; $snap_descr = "Daily backup";
-
Test it. Run this script
$ ./backup.php
Test is snapshot was created.
-
If everything is ok just add cronjob.
* 23 * * * /usr/local/ec2/backup.php