X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FOyster.git;a=blobdiff_plain;f=lib%2FOyster%2FProvision%2FAmazonEC2.pm;h=e54d9025a2a94bafcce284dd46c8855df5d5ff1b;hp=4ccd5090e9fa70a1d3790eb9560b1a8ce47b5852;hb=3e9249921f30134edd6ac14648e1f2aa101910e7;hpb=db3bbe33150deec6ffc5dea0bc68349f8a79f929 diff --git a/lib/Oyster/Provision/AmazonEC2.pm b/lib/Oyster/Provision/AmazonEC2.pm index 4ccd509..e54d902 100644 --- a/lib/Oyster/Provision/AmazonEC2.pm +++ b/lib/Oyster/Provision/AmazonEC2.pm @@ -6,12 +6,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");