Skip to content

Instantly share code, notes, and snippets.

@tomellis
tomellis / start-instance-form.php
Created October 24, 2012 13:35
Simple AWS PHP SDK example for Eucalyptus
<?php
// Source AWS PHP SDK functions
require_once '../sdk.class.php';
// Instantiate the AmazonEC2 class
$options = array(
'key' => 'ENTER-YOUR-ACCESS-KEY-HERE',
'secret' => 'ENTER-YOUR-SECRET-KEY-HERE',
);