WHIRR-642. Whirr writes the AWS Secret key to the stdout. Contributed by Steve Loughran.
diff --git a/CHANGES.txt b/CHANGES.txt
index e11fa54..05b6ea4 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -62,6 +62,9 @@
 
     WHIRR-601. Cassandra 1.0.8 download URL no longer valid (Andrew Bayer via asavu)
 
+    WHIRR-642. Whirr writes the AWS Secret key to the stdout.
+    (Steve Loughran via tomwhite)
+
 Release 0.7.1 - 2012-02-23
 
   IMPROVEMENTS
diff --git a/core/src/main/java/org/apache/whirr/Cluster.java b/core/src/main/java/org/apache/whirr/Cluster.java
index a321e44..93dc762 100644
--- a/core/src/main/java/org/apache/whirr/Cluster.java
+++ b/core/src/main/java/org/apache/whirr/Cluster.java
@@ -197,7 +197,6 @@
   public String toString() {
     return Objects.toStringHelper(this)
       .add("instances", instances)
-      .add("configuration", configuration)
       .toString();
   }