attempting to fix ::Provision
[p5sagit/Oyster.git] / lib / Oyster / Provision / Rackspace.pm
index 61e8977..ed14944 100644 (file)
@@ -9,13 +9,15 @@ requires 'config';
 has 'api_username' => ( is => 'ro', isa => 'Str', required => 1, lazy_build => 1);
 sub _build_api_username {
     return $ENV{CLOUDSERVERS_USER} if exists $ENV{CLOUDSERVERS_USER};
-    die "Need api_username or CLOUDSERVERS_USER in environment";
+    return $self->config->{api_username}
+        or die "Need api_username or CLOUDSERVERS_USER in environment";
 }
 
 has 'api_password' => ( is => 'ro', isa => 'Str', required => 1, lazy_build => 1);
 sub _build_api_password {
     return $ENV{CLOUDSERVERS_KEY} if exists $ENV{CLOUDSERVERS_KEY};
-    die "Need api_password or CLOUDSERVERS_KEY in environment";
+    return $self->config->{api_password}
+        or die "Need api_password or CLOUDSERVERS_KEY in environment";
 }
 
 has '_rs' => ( is => 'rw', isa => 'Net::RackSpace::CloudServers', default => sub {