Adding file to git
Ian Norton [Sat, 20 Nov 2010 17:29:58 +0000 (17:29 +0000)]
lib/Oyster/Provision/AmazonEC2.pm [new file with mode: 0644]

diff --git a/lib/Oyster/Provision/AmazonEC2.pm b/lib/Oyster/Provision/AmazonEC2.pm
new file mode 100644 (file)
index 0000000..0c58926
--- /dev/null
@@ -0,0 +1,147 @@
+package Oyster::Provision::AmazonEC2;
+use Moose::Role;
+use Net::Amazon::EC2;
+
+requires 'config';
+
+my $ec2_image_id = "ami-1a837773";
+my $ec2_username = "AKIAJXSD25MPWFYTQWIQ";
+my $ec2_password = "m76s9DyoXrHdpVy8HkhjgD0RAjy14bhkQ5Zts/gg";
+
+my $ec2 = Net::Amazon::EC2->new(
+    AWSAccessKeyId  => $ec2_username,
+    SecretAccessKey => $ec2_password,
+);
+
+my $ec2_oyster_key = "OysterDefault";
+my $key_pairs = $ec2->describe_key_pairs({ KeyName => $ec2_oyster_key });
+
+unless(defined($key_pairs)) {
+
+    print("Creating $ec2_oyster_key key pair\n");
+    $ec2->create_key_pair({ KeyName => $ec2_oyster_key });
+
+}
+
+
+sub create {
+   my $self = shift;
+
+   $self->config();
+
+
+   # Start 1 new instance from AMI: ami-XXXXXXXX
+   my $instance = $ec2->run_instances(
+       ImageId  => $ec2_image_id,
+       KeyName  => $ec2_oyster_key,
+       MinCount => 1,
+       MaxCount => 1,
+   );
+
+}
+
+sub delete {
+   my $self = shift;
+
+   $self->config();
+}
+
+sub resize {
+   my $self = shift;
+
+   $self->config();
+}
+
+1;
+
+__END__
+
+=head1 NAME
+
+Oyster::Provision::AmazonEC2 -- Provision your Oyster on Amazon EC2
+
+=head1 SYNOPSIS
+
+Use the Rackspace backend on your Oyster configuration file
+
+=head1 REQUIRED PARAMETERS
+
+The following are required to instantiate a backend:
+
+=over
+
+=item name
+
+The name of your new/existing rackspace server.
+
+=item size
+
+The size ID of the rackspace server you want to create.
+Use the following incantation to see them:
+
+    perl -MNet::RackSpace::CloudServers -e'
+        $r=Net::RackSpace::CloudServers->new(
+            user=>$ENV{CLOUDSERVERS_USER},
+            key=>$ENV{CLOUDSERVERS_KEY},
+        );
+        print map
+            { "id $_->{id} ram $_->{ram} disk $_->{disk}\n" }
+            $r->get_flavor_detail
+    '
+    id 1 ram 256 disk 10
+    id 2 ram 512 disk 20
+    id 3 ram 1024 disk 40
+    id 4 ram 2048 disk 80
+    id 5 ram 4096 disk 160
+    id 6 ram 8192 disk 320
+    id 7 ram 15872 disk 620
+
+=item image
+
+The image ID of the rackspace server you want to create.
+Use the following incantation to see them:
+
+    perl -MNet::RackSpace::CloudServers -e'
+        $r=Net::RackSpace::CloudServers->new(
+            user=>$ENV{CLOUDSERVERS_USER},
+            key=>$ENV{CLOUDSERVERS_KEY},
+        );
+        print map
+            { "id $_->{id} name $_->{name}\n" }
+            $r->get_image_detail
+    '
+    id 29 name Windows Server 2003 R2 SP2 x86
+    id 69 name Ubuntu 10.10 (maverick)
+    id 41 name Oracle EL JeOS Release 5 Update 3
+    id 40 name Oracle EL Server Release 5 Update 4
+    id 187811 name CentOS 5.4
+    id 4 name Debian 5.0 (lenny)
+    id 10 name Ubuntu 8.04.2 LTS (hardy)
+    id 23 name Windows Server 2003 R2 SP2 x64
+    id 24 name Windows Server 2008 SP2 x64
+    id 49 name Ubuntu 10.04 LTS (lucid)
+    id 14362 name Ubuntu 9.10 (karmic)
+    id 62 name Red Hat Enterprise Linux 5.5
+    id 53 name Fedora 13
+    id 17 name Fedora 12
+    id 71 name Fedora 14
+    id 31 name Windows Server 2008 SP2 x86
+    id 51 name CentOS 5.5
+    id 14 name Red Hat Enterprise Linux 5.4
+    id 19 name Gentoo 10.1
+    id 28 name Windows Server 2008 R2 x64
+    id 55 name Arch 2010.05
+
+Oyster only supports Linux images, specifically
+Ubuntu 10.10 (maverick).
+
+=item pub_ssh
+
+The public ssh key you would like copied to the
+new server's C</root/.ssh/authorized_keys> file
+to allow you to ssh in the box without providing
+a root password.
+
+=back
+
+=cut