diff --git a/library/Aws/AwsClient.php b/library/Aws/AwsClient.php index c9c191a..860d2e3 100644 --- a/library/Aws/AwsClient.php +++ b/library/Aws/AwsClient.php @@ -28,7 +28,9 @@ public function getAutoscalingConfig() { $objects = array(); $client = $this->sdk()->createAutoScaling(); - $res = $client->describeAutoScalingGroups(); + $res = $client->describeAutoScalingGroups([ + 'MaxRecords' => 100 + ]); foreach ($res->get('AutoScalingGroups') as $entry) {