From: hakim Date: Sat, 20 Nov 2010 21:59:45 +0000 (+0000) Subject: removing amazon keys (these have now been revoked ;-) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=58d9da66d7fbf428de8a14f165f38b14ef569ad8;p=p5sagit%2FOyster.git removing amazon keys (these have now been revoked ;-) --- diff --git a/lib/Oyster/Provision/AmazonEC2.pm b/lib/Oyster/Provision/AmazonEC2.pm index 8fdd7af..12c003b 100644 --- a/lib/Oyster/Provision/AmazonEC2.pm +++ b/lib/Oyster/Provision/AmazonEC2.pm @@ -5,12 +5,10 @@ use Net::Amazon::EC2; requires 'config'; has 'api_username' => ( is => 'ro', isa => 'Str', required => 1, default => sub { - return "AKIAJXSD25MPWFYTQWIQ"; - confess "Need api_username"; + die "Need api_username"; }); has 'api_password' => ( is => 'ro', isa => 'Str', required => 1, default => sub { - return "m76s9DyoXrHdpVy8HkhjgD0RAjy14bhkQ5Zts/gg"; - confess "Need api_password"; + die "Need api_password"; }); has ec2_oyster_key => (is => 'rw', isa => 'Str', default => "OysterDefault");